RosettaCodeData/Task/Boolean-values/Oberon/boolean-values.oberon

7 lines
67 B
Plaintext

VAR
a,b,c: BOOLEAN;
...
a := TRUE;
b := FALSE;
c := 1 > 2;