Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Created January 21, 2015 01:32
Show Gist options
  • Select an option

  • Save kmdsbng/b1c0b49d4750b90c2f46 to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/b1c0b49d4750b90c2f46 to your computer and use it in GitHub Desktop.
a = 1.tap {|i| puts i + i}
a # => 1
b = 1.tap {|i| break i + i}
b # => 2
# >> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment