[REBOL] Re: ASCII values
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