From b64014c154299374f731f0a9cd46d7ca428725f2 Mon Sep 17 00:00:00 2001 From: gmega Date: Wed, 29 Nov 2023 09:52:32 -0300 Subject: [PATCH] remove example file (included by accident) --- tests/profiler/example.nim | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tests/profiler/example.nim 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