Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-13 | Added additional inspirations for Ziglings | Dave Gauer | |
Ruby Koans is even attributed by rustlings. The Little Schemer is a personal all-time favorite programming book. | |||
2021-02-13 | Merge pull request #11 from tijb/patch-2 | Dave Gauer | |
Update 04_arrays.zig | Array Index | |||
2021-02-13 | Updating README description of project | Dave Gauer | |
Also updated the GitHub project description to: "Learn the Zig programming language by fixing tiny broken programs." I think it sounds more of a fun challenge this way rather than the more academic "learn by doing exercises". I mean, who wouldn't want to come help these "tiny broken programs"?!? | |||
2021-02-12 | Update 04_arrays.zig | tim bangma | |
array index was off by 1. | |||
2021-02-12 | Update README to reflect new version checking | Dave Gauer | |
2021-02-12 | Merge branch 'SpexGuy-zig-build' into main | Dave Gauer | |
2021-02-12 | Merge branch 'zig-build' of https://github.com/SpexGuy/ziglings into ↵ | Dave Gauer | |
SpexGuy-zig-build | |||
2021-02-12 | Merge pull request #5 from Joefish/zig_version_check | Dave Gauer | |
Added a zig version test | |||
2021-02-12 | Merge pull request #9 from palash25/typo2 | Dave Gauer | |
exercise/25 fix typo | |||
2021-02-12 | exercise/25 fix typo | Palash Nigam | |
2021-02-11 | Use a zig build script to run ziglings | Martin Wickham | |
2021-02-11 | Improved zig version check | Joseph-Eugene Winzer | |
2021-02-11 | Merge pull request #7 from palash25/typo | Dave Gauer | |
exercise/21: fix typo | |||
2021-02-12 | exercise/21: fix typo | Palash Nigam | |
2021-02-11 | Added zig version check for commit number | Joseph-Eugene Winzer | |
2021-02-11 | Added a zig version test | Joseph-Eugene Winzer | |
2021-02-10 | Added string specifier in format strings (#3) | Dave Gauer | |
This is now required in current versions of Zig. | |||
2021-02-10 | Merge pull request #3 from Joefish/06_print_specifier | Dave Gauer | |
Added string specifier in Ex 06 | |||
2021-02-10 | Merge branch 'main' of github.com:ratfactor/ziglings into main | Dave Gauer | |
2021-02-10 | Removed incorrect explanation of assignment error (#1) | Dave Gauer | |
It really has nothing to do with the if/else expression. The peer types are being resolved correctly. The same error can be produced with something as simple as: var foo = 5; | |||
2021-02-10 | Added string specifier in Ex 06 | Joseph-Eugene Winzer | |
std.fmt.format does not take strings without a string specifier since zig 0.8.0. | |||
2021-02-10 | Ex 22 spelling error | Dave Gauer | |
I never make mistakes with apostrophes'es', so I dont' know what happened here. | |||
2021-02-10 | Improved 02 comment about imports being const | Dave Gauer | |
2021-02-09 | Added Quiz 5 for pointers. Elephants!!! | Dave Gauer | |
2021-02-09 | Moved exercises to exercises because exercises | Dave Gauer | |
2021-02-08 | Added Ex. 38-43 for pointers, updated README | Dave Gauer | |
Added topics beyond the language basics from ziglearn.org to the README. That's a lot of exercises. I'd like to keep it under 100, though! | |||
2021-02-07 | Consistent instructions and examples | Dave Gauer | |
I started off with "hints" that required the poor student to piece together the information from incomplete bits. A complete example is like a picture that is worth 1000 words and far clearer. | |||
2021-02-06 | Added ex. 37,38 structs | Dave Gauer | |
2021-02-06 | Add ex 35,36 enums; updated README | Dave Gauer | |
I'm changing the order of some more topics. Trying to explain the value of pointers when we're mostly dealing with stack-sized values like integers feels convoluted. So I'm starting with enums (which also has a nice segue from an earlier "switch" exercise). Then structs. Then unions (just in keeping with the order of these items on ziglearn.org) and THEN pointers and multi-pointers and slices. | |||
2021-02-03 | Inserted ex. 32 unreachable, added quiz4. | Dave Gauer | |
2021-02-03 | Fixed README instructions | Dave Gauer | |
2021-01-31 | Adding exs 27-32 | Dave Gauer | |
2021-01-30 | Added ex 21-26 for error handling | Dave Gauer | |
2021-01-22 | Added ex 19,20 functions and pop quiz | Dave Gauer | |
2021-01-21 | Hinting return type rather than making 'em guess. | Dave Gauer | |
2021-01-19 | Added Ex. 18 functions | Dave Gauer | |
2021-01-18 | added quiz 2 | Dave Gauer | |
2021-01-18 | Ex 16 oops, forgot to unfix it. :-) | Dave Gauer | |
2021-01-18 | Added ex 15,16 for loops | Dave Gauer | |
2021-01-10 | Added Ex 11-14: while loops | Dave Gauer | |
2021-01-08 | Added Ex 9,10 for If | Dave Gauer | |
2021-01-06 | Added first quiz | Dave Gauer | |
2021-01-05 | Added Exs. 6,7 strings | Dave Gauer | |
2021-01-04 | Added Ex. 5, array ops | Dave Gauer | |
2021-01-03 | Added Ex. 4 arrays | Dave Gauer | |
2021-01-03 | Add exercise 3, exercise num param for script | Dave Gauer | |
2021-01-03 | Added Ex. 2, polished script, added LICENSE | Dave Gauer | |
2020-12-23 | Initial commit with readme, script, and hello world | Dave Gauer | |
Absolutely minimum viable stuff. |