2025-02-05 10:52:15 +01:00

19 lines
258 B
Nim

import pkg/chronicles
import pkg/chronos
logScope:
topics = "main"
proc startApplication*() {.async.} =
proc aaa() {.async.} =
while true:
notice "a"
await sleepAsync(1000)
asyncSpawn aaa()
await sleepAsync(1000)
notice "b"