diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-11 11:19:58 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-11 11:19:58 -0400 |
commit | 92460f69eef7d0e8781095f958f7936e4ac7bb31 (patch) | |
tree | aba1954897ea00049fcf1a2ade2e0321dfcbe5f5 /build.zig | |
parent | d192e528256f7b9986eddc511df01540bd0f62a2 (diff) | |
download | ziglings-92460f69eef7d0e8781095f958f7936e4ac7bb31.tar.gz ziglings-92460f69eef7d0e8781095f958f7936e4ac7bb31.tar.bz2 ziglings-92460f69eef7d0e8781095f958f7936e4ac7bb31.tar.xz ziglings-92460f69eef7d0e8781095f958f7936e4ac7bb31.zip |
add ex065 builtins2
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -317,6 +317,7 @@ const exercises = [_]Exercise{ .{ .main_file = "062_loop_expressions.zig", .output = "Current language: Zig", + .hint = "Surely the current language is 'Zig'!", }, .{ .main_file = "063_labels.zig", @@ -326,6 +327,10 @@ const exercises = [_]Exercise{ .main_file = "064_builtins.zig", .output = "1101 + 0101 = 0010 (true). Furthermore, 11110000 backwards is 00001111.", }, + .{ + .main_file = "065_builtins2.zig", + .output = "A Narcissus loves all Narcissuses. He has room in his heart for: me myself.", + }, }; /// Check the zig version to make sure it can compile the examples properly. |