RosettaCodeData/Task/Logical-operations/Elixir/logical-operations-1.ex
2024-10-16 18:07:41 -07:00

6 lines
79 B
Elixir

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