Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-30 | Added ex075 Quiz 8 | Dave Gauer | |
2021-04-26 | add ex073 comptime 8 | Dave Gauer | |
2021-04-24 | fixed hint typo | Dave Gauer | |
2021-04-24 | add 072 comptime 7 | Dave Gauer | |
2021-04-23 | make global required version in build script | Dave Gauer | |
2021-04-22 | add 071 comptime 6 inline for | Dave Gauer | |
2021-04-21 | add ex070 comptime 5 | Dave Gauer | |
2021-04-21 | add ex069 comptime 4 | Dave Gauer | |
2021-04-18 | add ex068 comptime 3 | Dave Gauer | |
2021-04-15 | add ex067 comptime TWO | Dave Gauer | |
2021-04-14 | Added type reflection to 066 | Dave Gauer | |
2021-04-13 | Add ex066, the first comptime explanation | Dave Gauer | |
2021-04-11 | add ex065 builtins2 | Dave Gauer | |
2021-04-10 | added ex064 builtins | Dave Gauer | |
2021-04-10 | Added ex063 labels | Dave Gauer | |
2021-04-09 | added ex062 loop expressions | Dave Gauer | |
2021-04-09 | added ex061 coercions | Dave Gauer | |
2021-04-09 | Added ex060 floats | Dave Gauer | |
2021-04-08 | added 059 | Dave Gauer | |
2021-04-04 | Normalized exercise output, answers (#41) | Dave Gauer | |
1. All exercises should print a trailing \n 2. The build script should always show you _exactly_ what it's looking for when you get it wrong. Therefore, .output should be set to the exact expected output. | |||
2021-04-04 | Added epic ex058 - quiz 7 | Dave Gauer | |
2021-03-16 | removed dupe ex 057 from build script | Dave Gauer | |
2021-03-12 | "999 is enough for anybody" triple-zero padding (#18) | Dave Gauer | |
When I hit 999 exercises, I will finally have reached the ultimate state of soteriological release and no more exercises will be needed. The cycle will be complete. All that will be left is perfect quietude, freedom, and highest happiness. | |||
2021-03-10 | add ex 57 unions 3 | Dave Gauer | |
2021-03-09 | add ex56 for real | Dave Gauer | |
2021-03-09 | add ex 55 unions | Dave Gauer | |
2021-03-07 | "Multi pointers" are now "many pointers" | Dave Gauer | |
TypeInfo.Pointer.Size says "many", so there we are! | |||
2021-03-06 | add ex54 multipointers (for real) | Dave Gauer | |
2021-03-06 | add ex53 slices2 | Dave Gauer | |
2021-03-06 | add ex52 slices | Dave Gauer | |
2021-03-05 | Merge branch 'main' of github.com:ratfactor/ziglings into main | Dave Gauer | |
2021-03-05 | Add ex51 values | Dave Gauer | |
2021-03-02 | Cleaned up some extraneous whitespace characters | Joseph T Lyons | |
2021-02-28 | Add ex 50 'no values' (help further address #25) | Dave Gauer | |
2021-02-28 | Added quiz 6 (and the trumpeting sounds grow louder) | Dave Gauer | |
2021-02-28 | Added ex 48, additional comment on 46 | Dave Gauer | |
2021-02-27 | Add ex 47: methods | Dave Gauer | |
2021-02-16 | Added ex. 46 optionals 2 - elephants! | Dave Gauer | |
2021-02-16 | Exit 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-15 | Second attempt of the second attempt (#14) | Dave Gauer | |
2021-02-15 | Second attempt at explaining the minimum build (#14) | Dave Gauer | |
2021-02-14 | Attempt to make the version error and README clearer (#14) | Dave Gauer | |
2021-02-14 | Added testing ability | Dave Gauer | |
For the full details, see patches/README.md :-) | |||
2021-02-14 | Make "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-14 | Added ex 45 optionals | Dave Gauer | |
(And secretly added the patches/ dir. Don't tell anybody!) | |||
2021-02-13 | Emit correct output as green text indicating passed. | Dave Gauer | |
2021-02-11 | Use a zig build script to run ziglings | Martin Wickham | |