RosettaCodeData/Task/Assertions/Erlang/assertions.erl
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

10 lines
178 B
Erlang

1> N = 42.
42
2> N = 43.
** exception error: no match of right hand side value 43
3> N = 42.
42
4> 44 = N.
** exception error: no match of right hand side value 42
5> 42 = N.
42