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

                          
             
















                                  
discard """
  output: "Exit 1\nExit 2"
  target: "c"
"""
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()