mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 11:55:02 -05:00
8 lines
137 B
Plaintext
8 lines
137 B
Plaintext
program new;
|
|
begin
|
|
Writeln(inttohex(clwhite));
|
|
Writeln(hextoint('FAFAFA'));
|
|
Writeln($FAFAFA);
|
|
Writeln(StrToInt('$FAFAFA'));
|
|
end.
|