diff --git a/tests/profiler/example.nim b/tests/profiler/example.nim deleted file mode 100644 index 6725ee8..0000000 --- a/tests/profiler/example.nim +++ /dev/null @@ -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" \ No newline at end of file