1234567891011121314151617181920212223 |
- -module('pattern-matching').
- -export([is_zero/1, xOr/2, other_x_or/2]).
- is_zero(0) ->
- true;
- is_zero(_) ->
- false.
- xOr(true, false) ->
- true;
- xOr(false, true) ->
- true;
- xOr(_, _) ->
- false.
- other_x_or(X,X) ->
- false;
- other_x_or(_,_) ->
- true.
|