mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 04:02:25 +00:00
10 lines
87 B
Modula-2
10 lines
87 B
Modula-2
MODULE test;
|
|
VAR b : BOOLEAN;
|
|
i : INTEGER;
|
|
BEGIN
|
|
b := FALSE;
|
|
i := ORD(b);
|
|
|
|
END test.
|
|
|
|
|