4 lines
135 B
Text
4 lines
135 B
Text
# outputs the character value for 'a'
|
|
out (ord "a") endl console
|
|
# outputs the character 'a' given its value
|
|
out (chr 97) endl console
|