Skip to content

Instantly share code, notes, and snippets.

@mtornwall
Created December 5, 2012 14:23
Show Gist options
  • Save mtornwall/4215852 to your computer and use it in GitHub Desktop.
Save mtornwall/4215852 to your computer and use it in GitHub Desktop.
erlang scoping fun
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