** exception error: no match 5> Z = fun(N) -> N * 2 end. #Fun<erl_eval.6.80247286> 6> Z. #Fun<erl_eval.6.80247286> 7> Z(5). 10 Erlang is Functional Monday, February 18, 13
of 8 bits •String: a List of Integers •Record: a Tuple enforced by the compiler •IO List: a List of Integers, Binaries, and IO Lists; or a Binary •Boolean: the atoms true and false Monday, February 18, 13
handle_call synchronous, respond and new state handle_cast asynchronous, new state handle_info timeout, new state terminate clean up code_change just upgraded, new state Monday, February 18, 13