oberonbyexample/constants/Constants.Mod
2017-06-09 13:10:12 +04:00

14 lines
204 B
Modula-2

MODULE constants;
IMPORT Out;
CONST
s = "if it moves, compile it!";
n = 42;
m = n * 2;
BEGIN
Out.String(s); Out.Ln;
Out.Int(n, 0); Out.Ln;
Out.Int(m, 0); Out.Ln;
END constants.