5 lines
153 B
Text
5 lines
153 B
Text
Red []
|
|
print to-integer first "a" ;; -> 97
|
|
print to-integer #"a" ;; -> 97
|
|
print to-binary "a" ;; -> #{61}
|
|
print to-char 97 ;; -> a
|