oberonbyexample/examples/constants/Constants.Mod.ob2
Antranig Vartanian 95b512baf4
post rebranding
2024-05-11 19:17:23 +04:00

14 lines
204 B
Text

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.