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

5 lines
115 B
Text

x = True
y = False
see "x and y : " + (x and y) + nl
see "x or y : " + (x or y) + nl
see "not x : " + (not x) + nl