Files
Nim/tests/parallel/tlet_spawn.nim
2018-11-23 11:58:28 +01:00

20 lines
269 B
Nim

discard """
output: '''
done999 999
'''
"""
import threadpool
proc foo(): int = 999
# test that the disjoint checker deals with 'a = spawn f(); g = spawn f()':
proc main =
parallel:
let f = spawn foo()
let b = spawn foo()
echo "done", f, " ", b
main()