diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-02-28 18:36:38 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-02-28 18:36:38 -0500 |
commit | 95bdff5bfdf3c4300b844e14251cd3dcfcd76ef8 (patch) | |
tree | 9d23bc6cb49a6b475b1147b0dc83d3866a10aa51 /build.zig | |
parent | 2d205d9645b6c7947e3016fca98dfaf533d3f5e2 (diff) | |
download | ziglings-95bdff5bfdf3c4300b844e14251cd3dcfcd76ef8.tar.gz ziglings-95bdff5bfdf3c4300b844e14251cd3dcfcd76ef8.tar.bz2 ziglings-95bdff5bfdf3c4300b844e14251cd3dcfcd76ef8.tar.xz ziglings-95bdff5bfdf3c4300b844e14251cd3dcfcd76ef8.zip |
Add ex 50 'no values' (help further address #25)
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -260,7 +260,10 @@ const exercises = [_]Exercise{ .output = "A B C Cv Bv Av", .hint = "Now you're writting Zig!", }, - // 50 null vs undefined + .{ + .main_file = "50_no_value.zig", + .output = "That is not dead which can eternal lie / And with strange aeons even death may die.", + }, // 51 pass-by-value and const fn params // 52 slices! }; |