RosettaCodeData/Task/Logical-operations/Self/logical-operations.self
2023-07-01 13:44:08 -04:00

4 lines
108 B
Text

true not = false.
( true && false ) = false.
( true ^^ false ) = true. "xor"
( true || false ) = true. "or"