Skip to content

Instantly share code, notes, and snippets.

@kek
Last active December 25, 2015 02:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kek/6906633 to your computer and use it in GitHub Desktop.
Save kek/6906633 to your computer and use it in GitHub Desktop.
Shadowing?
defmodule Main do
def f do
1
end
def run do
f = 2
f
end
end
IO.puts to_string(Main.run)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment