mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
14 lines
192 B
Nim
14 lines
192 B
Nim
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()
|
|
|