Sha256: dcc81b16d7b5c7b2fbfaf155c65226d7d7f3c9b19f4bd0b9e900c0e7af05711e

Contents?: true

Size: 118 Bytes

Versions: 6

Compression:

Stored size: 118 Bytes

Contents

# frozen_string_literal: true

fibers = []

(1..).each do |i|
	fibers << Fiber.new{}
	fibers.last.resume
	puts i
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
async-1.26.1 benchmark/fiber_count.rb
async-1.26.0 benchmark/fiber_count.rb
async-1.25.2 benchmark/fiber_count.rb
async-1.25.1 benchmark/fiber_count.rb
async-1.25.0 benchmark/fiber_count.rb
async-1.24.2 benchmark/fiber_count.rb