From e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Wed, 12 May 2021 20:35:29 -0400 Subject: add ex084 async --- build.zig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 1269a0e..fc831b8 100644 --- a/build.zig +++ b/build.zig @@ -407,12 +407,17 @@ const exercises = [_]Exercise{ .{ .main_file = "082_anonymous_structs3.zig", .output = "\"0\"(bool):true \"1\"(bool):false \"2\"(i32):42 \"3\"(f32):3.14159202e+00", - .hint = "This one is a challenge! But you have everything you need." + .hint = "This one is a challenge! But you have everything you need.", }, .{ .main_file = "083_anonymous_lists.zig", .output = "I say hello!", }, + .{ + .main_file = "084_async.zig", + .output = "foo() A", + .hint = "Read the facts. Use the facts.", + }, }; /// Check the zig version to make sure it can compile the examples properly. -- cgit v1.2.3-ZIG