Ruby - Concurrent Programming
What will be the output of this Ruby code?
fiber = Fiber.new do puts 'Hello' Fiber.yield puts 'World' end fiber.resume fiber.resume
