RosettaCodeData/Task/Variable-size-Get/Modula-3/variable-size-get.mod3
2023-07-01 13:44:08 -04:00

9 lines
205 B
Text

MODULE Size EXPORTS Main;
FROM IO IMPORT Put;
FROM Fmt IMPORT Int;
BEGIN
Put("Integer in bits: " & Int(BITSIZE(INTEGER)) & "\n");
Put("Integer in bytes: " & Int(BYTESIZE(INTEGER)) & "\n");
END Size.