remove example file (included by accident)

This commit is contained in:
gmega 2023-11-29 09:52:32 -03:00
parent ade1f3018e
commit b64014c154
No known key found for this signature in database
GPG Key ID: FFD8DAF00660270F

View File

@ -1,18 +0,0 @@
import os
import ../../chronos
proc child11() {.async.} =
echo "I ran"
await sleepAsync(10.milliseconds)
proc child2() {.async.} =
os.sleep(10)
proc child1() {.async.} =
await child2()
await child11()
proc p() {.async.} =
echo "r1"
await child1()
echo "r2"