1
0
mirror of https://github.com/moparisthebest/Simba synced 2025-02-20 04:51:51 -05:00
Simba/Tests/PS/hexconv.simba

8 lines
137 B
Plaintext
Raw Normal View History

2010-09-11 14:01:33 +02:00
program new;
begin
Writeln(inttohex(clwhite));
Writeln(hextoint('FAFAFA'));
Writeln($FAFAFA);
Writeln(StrToInt('$FAFAFA'));
end.