Files
Nim/tests/async/t14820.nim
2026-07-06 14:00:43 +02:00

26 lines
362 B
Nim

discard """
output: '''
iteration: 1
iteration: 2
iteration: 3
iteration: 4
async done
iteration: 5
'''
"""
import asyncdispatch, times
var done = false
proc somethingAsync() {.async.} =
yield sleepAsync 1000
echo "async done"
done = true
asyncCheck somethingAsync()
var count = 0
while not done:
count += 1
drain 200
echo "iteration: ", count