RosettaCodeData/Task/Character-codes/Elena/character-codes.elena

10 lines
121 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2013-04-10 16:57:12 -07:00
2019-09-12 10:33:56 -07:00
public program()
{
var ch := $97;
2015-11-18 06:14:39 +00:00
2019-09-12 10:33:56 -07:00
console.printLine:ch;
console.printLine(ch.toInt())
}