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

7 lines
79 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
iex(1)> true and false
false
iex(2)> false or true
true
iex(3)> not false
true