Skip to content

Instantly share code, notes, and snippets.

@chrishunt
Created November 20, 2012 03:43
Show Gist options
  • Save chrishunt/4115804 to your computer and use it in GitHub Desktop.
Save chrishunt/4115804 to your computer and use it in GitHub Desktop.
def test_proc
Proc.new { return }.call
puts 'Never see this...'
end
def test_lambda
lambda { return }.call
puts 'Do see this...'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment