brain
brain copied to clipboard
Numbers Print As Puncutation
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 (/).