summary refs log blame commit diff stats
path: root/tests/coroutines/twait.nim
blob: d8752b09431719401941015cad728192cd9f1f4c (plain) (tree)


















                                  
discard """
  output: "Exit 1\nExit 2"
"""
import coro

var coro1: CoroutineRef

proc testCoroutine1() =
  for i in 0..<10:
    suspend(0)
  echo "Exit 1"

proc testCoroutine2() =
  coro1.wait()
  echo "Exit 2"

coro1 = coro.start(testCoroutine1)
coro.start(testCoroutine2)
run()