RosettaCodeData/Task/Logical-operations/Erlang/logical-operations.erl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

10 lines
121 B
Erlang

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