aboutsummaryrefslogtreecommitdiff
path: root/semestr-2/racket/l15/solution.bak
diff options
context:
space:
mode:
Diffstat (limited to 'semestr-2/racket/l15/solution.bak')
-rw-r--r--semestr-2/racket/l15/solution.bak7
1 files changed, 7 insertions, 0 deletions
diff --git a/semestr-2/racket/l15/solution.bak b/semestr-2/racket/l15/solution.bak
new file mode 100644
index 0000000..03ab86a
--- /dev/null
+++ b/semestr-2/racket/l15/solution.bak
@@ -0,0 +1,7 @@
+#lang racket
+
+
+
+(define (run-concurrent . thunks)
+ (define threads (map thread thunks))
+ (for-each thread-wait threads)) \ No newline at end of file