RosettaCodeData/Task/Boolean-values/Zonnon/boolean-values.zonnon

8 lines
69 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var
a,b,c: boolean;
begin
a := false;
b := true;
c := 1 > 2;
...