summaryrefslogtreecommitdiff
path: root/exercises/087_async4.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-04-07 09:18:37 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-04-07 09:18:37 +0200
commit7cb7a9948a9f5c9965fedd59f0cd816f28962fe4 (patch)
tree1953e653faba351ab103ec030eacbfc79b7dae6c /exercises/087_async4.zig
parent1166f3cfb65d7edc9086c6ba6b8edd4754964b33 (diff)
parent3574fd3ae037f34510c6bb6657332b57447ac5b1 (diff)
Merge branch 'main' into fix-060
Diffstat (limited to 'exercises/087_async4.zig')
-rw-r--r--exercises/087_async4.zig30
1 files changed, 0 insertions, 30 deletions
diff --git a/exercises/087_async4.zig b/exercises/087_async4.zig
deleted file mode 100644
index bb9c9ec..0000000
--- a/exercises/087_async4.zig
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// It has probably not escaped your attention that we are no
-// longer capturing a return value from foo() because the 'async'
-// keyword returns the frame instead.
-//
-// One way to solve this is to use a global variable.
-//
-// See if you can make this program print "1 2 3 4 5".
-//
-const print = @import("std").debug.print;
-
-var global_counter: i32 = 0;
-
-pub fn main() void {
- var foo_frame = async foo();
-
- while (global_counter <= 5) {
- print("{} ", .{global_counter});
- ???
- }
-
- print("\n", .{});
-}
-
-fn foo() void {
- while (true) {
- ???
- ???
- }
-}