mirror of
https://github.com/logos-storage/nim-chronos.git
synced 2026-01-09 17:03:11 +00:00
11 lines
180 B
Nim
11 lines
180 B
Nim
import asyncdispatch2
|
|
|
|
proc task() {.async.} =
|
|
await sleepAsync(1000)
|
|
|
|
proc waitTask() {.async.} =
|
|
echo await withTimeout(task(), 100)
|
|
|
|
when isMainModule:
|
|
waitFor waitTask()
|