RosettaCodeData/Task/Logical-operations/Elixir/logical-operations-1.elixir

7 lines
79 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
iex(1)> true and false
false
iex(2)> false or true
true
iex(3)> not false
true