You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.
The current algorithm for displaying numbers is quite naive and largely broken. It only really works for numbers between 0 and 9. After that, it prints out many punctuation characters and then some letters for any numbers greater than 9.
This should be fixed to allow for any number of digits.
Fixing this will likely require an implementation of the modulo (%) operator and integer division (/).
The text was updated successfully, but these errors were encountered:
The current algorithm for displaying numbers is quite naive and largely broken. It only really works for numbers between
0
and9
. After that, it prints out many punctuation characters and then some letters for any numbers greater than 9.This should be fixed to allow for any number of digits.
Fixing this will likely require an implementation of the modulo (%) operator and integer division (/).
The text was updated successfully, but these errors were encountered: