Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/Literals-Integer/Modula-3/literals-integer.mod3
Normal file
14
Task/Literals-Integer/Modula-3/literals-integer.mod3
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue