Skip to content

Instantly share code, notes, and snippets.

@fl00r
Created April 22, 2014 20:13
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 fl00r/11192702 to your computer and use it in GitHub Desktop.
Save fl00r/11192702 to your computer and use it in GitHub Desktop.
small = (1..10).to_a
big = (1..5_000).to_a
Fiber.new do
puts "It's ok"
puts *small
puts "It is not ok"
puts *big
end.resume
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment