Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

ASCII values

 [1/2] from: zimmerman::chartermi::net at: 13-Dec-2000 9:07


Anyone know how to write a small program to print out all the ascii values along with their decimal/hex/oct counterparts in a nice order? theturtle

 [2/2] from: blazs:orac:au at: 14-Dec-2000 2:29


Hello Richard On 14-Dec-00, Richard Zimmerman wrote:
> Anyone know how to write a small program to print out all the ascii > values along with their decimal/hex/oct counterparts in a nice > order?
for count 0 127 1 [print [count to-hex count mold to-char count]] does the trick ... but not sure how to print octal numbers Blaz