Skip to content

Instantly share code, notes, and snippets.

@pope
Created August 31, 2009 18:12
Show Gist options
  • Save pope/178621 to your computer and use it in GitHub Desktop.
Save pope/178621 to your computer and use it in GitHub Desktop.
def foo
puts "I was called"
end
def stupidcallback(cb)
puts "Before"
cb.call
puts "After"
end
stupidcallback(->{foo})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment