Skip to content

Instantly share code, notes, and snippets.

@dfockler

dfockler/test.rb Secret

Created June 18, 2015 16:51
Show Gist options
  • Save dfockler/9823cfeba71b8fcf7f7c to your computer and use it in GitHub Desktop.
Save dfockler/9823cfeba71b8fcf7f7c to your computer and use it in GitHub Desktop.
Ruby Yielding
elements.each do |element|
output << yield element #this gives a syntax error
end
elements.each do |element|
output << yield(element) #this works
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment