Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created September 26, 2008 13:21
Show Gist options
  • Save vangberg/13097 to your computer and use it in GitHub Desktop.
Save vangberg/13097 to your computer and use it in GitHub Desktop.
class K
def foo(&b)
instance_eval &b
p bar
end
end
k = K.new
k.foo { bar = "smoking, subtle form of suicide" }
=> NameError: undefined local variable or method `bar' for #<C:0xb7f04260>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment