RosettaCodeData/Task/Character-codes/Red/character-codes.red

6 lines
153 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
Red []
print to-integer first "a" ;; -> 97
print to-integer #"a" ;; -> 97
print to-binary "a" ;; -> #{61}
print to-char 97 ;; -> a