9 lines
145 B
Nim
9 lines
145 B
Nim
import threadpool
|
|
const str = ["Enjoy", "Rosetta", "Code"]
|
|
|
|
proc f(i: int) {.thread.} =
|
|
echo str[i]
|
|
|
|
for i in 0..str.high:
|
|
spawn f(i)
|
|
sync()
|