1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Tests/PS/hexconv.simba
2010-09-11 14:01:33 +02:00

8 lines
137 B
Plaintext

program new;
begin
Writeln(inttohex(clwhite));
Writeln(hextoint('FAFAFA'));
Writeln($FAFAFA);
Writeln(StrToInt('$FAFAFA'));
end.