RosettaCodeData/Task/Logical-operations/Elixir/logical-operations-1.elixir
2023-07-01 13:44:08 -04:00

6 lines
79 B
Text

iex(1)> true and false
false
iex(2)> false or true
true
iex(3)> not false
true