a497b4d1c ^
24e1d22ec ^
1 2 3 4 5 6 7
8 9
10
11 12
13
discard """ outputsub: "150" """ import actors var pool: TActorPool[int, void] createActorPool(pool) for i in 0 .. < 300: pool.spawn(i, proc (x: int) {.thread.} = echo x) pool.join()