From 469d4dfbf40dd5512f53ce1cb022e1aa4639443b Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Wed, 12 May 2021 21:36:57 -0400 Subject: add ex087 async 4 --- build.zig | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build.zig') 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. -- cgit v1.2.3-ZIG