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

14 lines
152 B
Text

(28)> nil || 23
23
iex(29)> [] || false
[]
iex(30)> nil && true
nil
iex(31)> 0 && 15
15
iex(32)> ! true
false
iex(33)> ! nil
true
iex(34)> ! 3.14
false