RosettaCodeData/Task/Logical-operations/Ring/logical-operations.ring

7 lines
117 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
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