Skip to content

Instantly share code, notes, and snippets.

@elbrujohalcon
Created October 2, 2015 17:57
Show Gist options
  • Save elbrujohalcon/26799986258893d99021 to your computer and use it in GitHub Desktop.
Save elbrujohalcon/26799986258893d99021 to your computer and use it in GitHub Desktop.
One does not simply pattern match funs
3> Fun = fun() -> ok end,
3> Fun = fun() -> ok end.
** exception error: no match of right hand side value #Fun<erl_eval.20.54118792>
4> Fun = fun() -> ok end.
#Fun<erl_eval.20.54118792>
5> Fun = fun() -> ok end.
#Fun<erl_eval.20.54118792>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment