Skip to content

Instantly share code, notes, and snippets.

@edsu
Last active May 25, 2022 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsu/0ed901d942a77f750dd277df3ab9757b to your computer and use it in GitHub Desktop.
Save edsu/0ed901d942a77f750dd277df3ab9757b to your computer and use it in GitHub Desktop.
def stuff()
yield 1
yield 2
yield 3
yield 4
yield 5
end
stuff.take(2).each do |i|
puts i
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment