summaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-05-12 21:25:48 -0400
committerDave Gauer <dave@ratfactor.com>2021-05-12 21:25:48 -0400
commit3e5647d88cde9834dea4a71088cf63413f859f4e (patch)
tree9c313b7d437ae72eccdbc504b25d287ef5af8a3d /build.zig
parent54c048b0a0ea5ee2136c4d4193660d4934eab925 (diff)
add ex086 async 3
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 707c212..28e4682 100644
--- a/build.zig
+++ b/build.zig
@@ -422,6 +422,10 @@ const exercises = [_]Exercise{
.main_file = "085_async2.zig",
.output = "Hello async!",
},
+ .{
+ .main_file = "086_async3.zig",
+ .output = "5 4 3 2 1",
+ },
};
/// Check the zig version to make sure it can compile the examples properly.