Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Logical-operations/Erlang/logical-operations.erl
Normal file
10
Task/Logical-operations/Erlang/logical-operations.erl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
1> true and false.
|
||||
false
|
||||
2> false or true.
|
||||
true
|
||||
3> true xor false.
|
||||
true
|
||||
4> not false.
|
||||
true
|
||||
5> not (true and true).
|
||||
false
|
||||
Loading…
Add table
Add a link
Reference in a new issue