1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Tests/PS/hexconv.simba

8 lines
137 B
Plaintext
Raw Normal View History

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