Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
iex(1)> true and false
|
||||
false
|
||||
iex(2)> false or true
|
||||
true
|
||||
iex(3)> not false
|
||||
true
|
||||
14
Task/Logical-operations/Elixir/logical-operations-2.elixir
Normal file
14
Task/Logical-operations/Elixir/logical-operations-2.elixir
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
(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
|
||||
Loading…
Add table
Add a link
Reference in a new issue