Ruby - Concurrent Programming
What will be the output of the following Ruby code?
fiber = Fiber.new do puts 'Step 1' Fiber.yield puts 'Step 2' end fiber.resume puts 'Between' fiber.resume
