diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-12 20:35:29 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-12 20:35:29 -0400 |
commit | e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e (patch) | |
tree | 74b7743a72798e3b56154003a12d3dda67a09a27 /build.zig | |
parent | 86e071f25607817a6a507956b1f759e5d13be5df (diff) | |
download | ziglings-e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e.tar.gz ziglings-e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e.tar.bz2 ziglings-e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e.tar.xz ziglings-e555fdc3dfbc7f0f7654ab5d530a0a1d8f0d628e.zip |
add ex084 async
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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. |