RosettaCodeData/Task/Logical-operations/Self/logical-operations.self

5 lines
108 B
Plaintext

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