RosettaCodeData/Task/Literals-Integer/Modula-3/literals-integer.mod3
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

14 lines
214 B
Text

MODULE Literals EXPORTS Main;
IMPORT IO;
BEGIN
IO.PutInt(16_2D7);
IO.Put(" ");
IO.PutInt(10_727);
IO.Put(" ");
IO.PutInt(8_1327);
IO.Put(" ");
IO.PutInt(2_1011010111);
IO.Put("\n");
END Literals.