Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Created August 24, 2018 14:00
Show Gist options
  • Save mehdi-farsi/3daa47f0b80f090851bc51a4f653fc7d to your computer and use it in GitHub Desktop.
Save mehdi-farsi/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