RosettaCodeData/Task/Boolean-values/Sather/boolean-values.sa
2023-07-01 13:44:08 -04:00

7 lines
156 B
Text

v:BOOL := true; -- ok
i:INT := 1;
v := 1; -- wrong
if i then ... end; -- wrong: if requires a bool!
-- BUT
v := 1.bool; -- ok
if i.bool then ... end; -- ok