diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-05-12 21:25:48 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-05-12 21:25:48 -0400 |
commit | 5fec2602cff707f5732ac5d821e8bb18ff69ed79 (patch) | |
tree | 9c313b7d437ae72eccdbc504b25d287ef5af8a3d /build.zig | |
parent | d8dddd128fdb3e7d0f36c60c522a56cbcd64bc22 (diff) | |
download | ziglings-5fec2602cff707f5732ac5d821e8bb18ff69ed79.tar.gz ziglings-5fec2602cff707f5732ac5d821e8bb18ff69ed79.tar.bz2 ziglings-5fec2602cff707f5732ac5d821e8bb18ff69ed79.tar.xz ziglings-5fec2602cff707f5732ac5d821e8bb18ff69ed79.zip |
add ex086 async 3
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |