2025-02-05 11:06:18 +01:00

18 lines
255 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"