diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-10 20:26:17 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-10 20:26:17 -0400 |
commit | d192e528256f7b9986eddc511df01540bd0f62a2 (patch) | |
tree | 4801ec9096105c258c435412790456611d28c088 /build.zig | |
parent | 4251076b50082023f609e2823b143993f7749b57 (diff) | |
download | ziglings-d192e528256f7b9986eddc511df01540bd0f62a2.tar.gz ziglings-d192e528256f7b9986eddc511df01540bd0f62a2.tar.bz2 ziglings-d192e528256f7b9986eddc511df01540bd0f62a2.tar.xz ziglings-d192e528256f7b9986eddc511df01540bd0f62a2.zip |
added ex064 builtins
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -322,6 +322,10 @@ const exercises = [_]Exercise{ .main_file = "063_labels.zig", .output = "Enjoy your Cheesy Chili!", }, + .{ + .main_file = "064_builtins.zig", + .output = "1101 + 0101 = 0010 (true). Furthermore, 11110000 backwards is 00001111.", + }, }; /// Check the zig version to make sure it can compile the examples properly. |