RosettaCodeData/Task/Logical-operations/Elixir/logical-operations-1.elixir
2015-11-18 06:14:39 +00:00

6 lines
79 B
Text

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