Skip to content

Instantly share code, notes, and snippets.

@nyaray
Forked from mtornwall/gist:4215852
Created December 5, 2012 14:25
Show Gist options
  • Save nyaray/4215870 to your computer and use it in GitHub Desktop.
Save nyaray/4215870 to your computer and use it in GitHub Desktop.
erlang scoping fun (OCD Edition)
test(Derp) ->
case Derp of
true ->
OhYes = yes;
false ->
OhYes = no
end,
io:format("~p~n", [OhYes]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment