diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-03-06 21:31:02 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-03-06 21:31:02 -0500 |
commit | 2f4a0f0c7dfe212c4e69505f27511a61874034c8 (patch) | |
tree | 22c2f302eff6605559588bdb9cdccea67579161b /build.zig | |
parent | b9dd85d87477964037702f795d916dcfe175f87d (diff) | |
download | ziglings-2f4a0f0c7dfe212c4e69505f27511a61874034c8.tar.gz ziglings-2f4a0f0c7dfe212c4e69505f27511a61874034c8.tar.bz2 ziglings-2f4a0f0c7dfe212c4e69505f27511a61874034c8.tar.xz ziglings-2f4a0f0c7dfe212c4e69505f27511a61874034c8.zip |
add ex54 multipointers (for real)
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -276,6 +276,10 @@ const exercises = [_]Exercise{ .main_file = "53_slices2.zig", .output = "'all your base are belong to us.' 'for great justice.'", }, + .{ + .main_file = "54_multipointers.zig", + .output = "Memory is a resource.", + }, }; /// Check the zig version to make sure it can compile the examples properly. |