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

10 lines
122 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import extensions;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
var ch := $97;
2025-08-11 18:05:26 -07:00
Console.printLine(ch);
Console.printLine(ch.toInt())
2023-07-01 11:58:00 -04:00
}