A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 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