Skip to content

Instantly share code, notes, and snippets.

@benlieb
Created January 14, 2014 21:03
Show Gist options
  • Save benlieb/8425653 to your computer and use it in GitHub Desktop.
Save benlieb/8425653 to your computer and use it in GitHub Desktop.
def test
name = 'jim'
puts "hi"
puts yield
puts "hi"
end
name = 'bob'
test do
name
end
output ===>
hi
bob
hi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment