RosettaCodeData/Task/Character-codes/Sather/character-codes.sa

8 lines
146 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
class MAIN is
main is
#OUT + 'a'.int + "\n"; -- or
#OUT + 'a'.ascii_int + "\n";
#OUT + CHAR::from_ascii_int(97) + "\n";
end;
end;