14 lines
214 B
Text
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.
|