aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
AgeCommit message (Collapse)Author
2021-03-05Add ex51 valuesDave Gauer
2021-03-02Cleaned up some extraneous whitespace charactersJoseph T Lyons
2021-02-28Add ex 50 'no values' (help further address #25)Dave Gauer
2021-02-28Added quiz 6 (and the trumpeting sounds grow louder)Dave Gauer
2021-02-28Added ex 48, additional comment on 46Dave Gauer
2021-02-27Add ex 47: methodsDave Gauer
2021-02-16Added ex. 46 optionals 2 - elephants!Dave Gauer
2021-02-16Exit rather than return upon version failure (#14)Dave Gauer
A plain `zig build` was exiting as expected after the version check failure did an early 'return'. But `zig build 01` (specifying a step) would print the fail message and then continue...but fail to find the step (which was not added). Calling `exit()` solves this. Calling it with an error status code causes vomiting in the build system (since, you know, there was an error). So returning with `exit(0)` is the way to go here.
2021-02-15Second attempt of the second attempt (#14)Dave Gauer
2021-02-15Second attempt at explaining the minimum build (#14)Dave Gauer
2021-02-14Attempt to make the version error and README clearer (#14)Dave Gauer
2021-02-14Added testing abilityDave Gauer
For the full details, see patches/README.md :-)
2021-02-14Make "check and halt" the default for zig build NN (#15)Dave Gauer
The "start with NN" action is now NN_start. Also formatting output for improved clarity (hopefully).
2021-02-14Added ex 45 optionalsDave Gauer
(And secretly added the patches/ dir. Don't tell anybody!)
2021-02-13Emit correct output as green text indicating passed.Dave Gauer
2021-02-11Use a zig build script to run ziglingsMartin Wickham