aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-05-12 21:36:57 -0400
committerDave Gauer <dave@ratfactor.com>2021-05-12 21:36:57 -0400
commitbe279c78f5623bc7785f9a8a3f900700d481be15 (patch)
treeb4a2bc00bed7ea92c6f248eded363ce6b9479687 /build.zig
parent3e5647d88cde9834dea4a71088cf63413f859f4e (diff)
add ex087 async 4
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index 28e4682..d8c4676 100644
--- a/build.zig
+++ b/build.zig
@@ -426,6 +426,10 @@ const exercises = [_]Exercise{
.main_file = "086_async3.zig",
.output = "5 4 3 2 1",
},
+ .{
+ .main_file = "087_async4.zig",
+ .output = "1 2 3 4 5",
+ },
};
/// Check the zig version to make sure it can compile the examples properly.