Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save irridescentrambler/98f1a60c550a5d640f9e2d565aec02a9 to your computer and use it in GitHub Desktop.

Select an option

Save irridescentrambler/98f1a60c550a5d640f9e2d565aec02a9 to your computer and use it in GitHub Desktop.
fibers_level_1_demo.rb
fiber = Fiber.new do
n = 1
while n <= 30 do
Fiber.yield (1..n).inject(&:*)
n = n + 1
end
end
while fiber.alive?
puts fiber.resume
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment