Skip to content

Instantly share code, notes, and snippets.

@ryan-allen
Created September 2, 2010 06:41
Show Gist options
  • Save ryan-allen/561966 to your computer and use it in GitHub Desktop.
Save ryan-allen/561966 to your computer and use it in GitHub Desktop.
a, b = nil, nil
a = lambda {
b.call()
}
b = lambda {
puts :IMA_B_LOL
}
b.call() # prints :IMA_B_LOL
a.call() # prints :IMA_B_LOL
# HOORAY FOR SCIENCE!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment