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

5 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
true not = false.
( true && false ) = false.
( true ^^ false ) = true. "xor"
( true || false ) = true. "or"