Skip to content

Instantly share code, notes, and snippets.

@hassox
Forked from ryan-allen/first-big-wtf-in-months.rb
Created September 2, 2010 06:33
Show Gist options
  • Save hassox/561960 to your computer and use it in GitHub Desktop.
Save hassox/561960 to your computer and use it in GitHub Desktop.
b = lambda {
:IMA_B_LOL
}
# A must enclose B
a = lambda {
b.call()
}
b.call() # raises nothing
a.call() # raises Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment