RosettaCodeData/Task/Logical-operations/Self/logical-operations.self
2015-11-18 06:14:39 +00:00

4 lines
108 B
Text

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