9 lines
205 B
Text
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.
|