compiler/src/voc07R/test.Mod

10 lines
87 B
Modula-2

MODULE test;
VAR b : BOOLEAN;
i : INTEGER;
BEGIN
b := FALSE;
i := ORD(b);
END test.