Skip to content

Instantly share code, notes, and snippets.

@bratish
Created April 2, 2011 16:30
Show Gist options
  • Save bratish/899622 to your computer and use it in GitHub Desktop.
Save bratish/899622 to your computer and use it in GitHub Desktop.
# binding example from Programming Ruby by Dave Thomas
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