Skip to content

Instantly share code, notes, and snippets.

@launchkit-codes
Created August 24, 2018 14:00
Show Gist options
  • Select an option

  • Save launchkit-codes/3daa47f0b80f090851bc51a4f653fc7d to your computer and use it in GitHub Desktop.

Select an option

Save launchkit-codes/3daa47f0b80f090851bc51a4f653fc7d to your computer and use it in GitHub Desktop.
def yield_with_return_value
hello_world = yield
puts hello_world
end
yield_with_return_value { "Hello World!" } # => Hello World!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment