Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Created August 24, 2018 13:54
Show Gist options
  • Save mehdi-farsi/cd22039818ab5188a6d507da27d10176 to your computer and use it in GitHub Desktop.
Save mehdi-farsi/cd22039818ab5188a6d507da27d10176 to your computer and use it in GitHub Desktop.
def one_yield
yield
end
def multiple_yields
yield
yield
end
one_yield { puts "one yield" }
multiple_yields { puts "multiple yields" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment