5 lines
135 B
Text
5 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
|