RosettaCodeData/Task/Literals-Integer/Oz/literals-integer-1.oz
2023-07-01 13:44:08 -04:00

7 lines
147 B
Text

try
%% binary octal dec. hexadecimal
0b1011010111 = 01327 = 727 = 0x2d7
{Show success}
catch _ then
{Show unexpectedError}
end