Skip to content

Instantly share code, notes, and snippets.

@bratish
Created April 2, 2011 16:29
Show Gist options
  • Save bratish/899620 to your computer and use it in GitHub Desktop.
Save bratish/899620 to your computer and use it in GitHub Desktop.
def get_a_binding
val = 123
binding
end
val = "cat"
the_binding = get_a_binding
eval("val", the_binding) # => 123
eval("val") # => "cat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment