Created
March 8, 2026 07:35
-
-
Save irridescentrambler/98f1a60c550a5d640f9e2d565aec02a9 to your computer and use it in GitHub Desktop.
fibers_level_1_demo.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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