'let' within 'parallel' now works

This commit is contained in:
Araq
2014-09-22 08:34:05 +02:00
parent 1a3b730bf5
commit 8930ba50b9
4 changed files with 21 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
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()