RosettaCodeData/Task/Assertions/Erlang/assertions.erl

11 lines
178 B
Erlang
Raw Permalink Normal View History

2013-04-09 00:46:50 -07:00
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