My progress learning Zig via the ziglings 😊
Go to file
Dave Gauer 738a9f6cda Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00
.gitignore Initial commit with readme, script, and hello world 2020-12-23 13:53:27 -05:00
01_hello.zig Added Ex. 2, polished script, added LICENSE 2021-01-03 12:21:11 -05:00
02_std.zig Added Ex. 2, polished script, added LICENSE 2021-01-03 12:21:11 -05:00
03_assignment.zig Added first quiz 2021-01-06 17:41:53 -05:00
04_arrays.zig Added first quiz 2021-01-06 17:41:53 -05:00
05_arrays2.zig Added Ex. 5, array ops 2021-01-04 18:40:34 -05:00
06_strings.zig Added Exs. 6,7 strings 2021-01-05 19:26:02 -05:00
07_strings2.zig Added Exs. 6,7 strings 2021-01-05 19:26:02 -05:00
08_quiz.zig Added first quiz 2021-01-06 17:41:53 -05:00
09_if.zig Added Ex 9,10 for If 2021-01-08 17:53:22 -05:00
10_if2.zig Added Ex 9,10 for If 2021-01-08 17:53:22 -05:00
11_while.zig Added Ex 11-14: while loops 2021-01-10 11:46:42 -05:00
12_while2.zig Added Ex 11-14: while loops 2021-01-10 11:46:42 -05:00
13_while3.zig added quiz 2 2021-01-18 20:18:49 -05:00
14_while4.zig Added Ex 11-14: while loops 2021-01-10 11:46:42 -05:00
15_for.zig Added ex 15,16 for loops 2021-01-18 19:21:18 -05:00
16_for2.zig Ex 16 oops, forgot to unfix it. :-) 2021-01-18 19:44:08 -05:00
17_quiz2.zig added quiz 2 2021-01-18 20:18:49 -05:00
18_functions.zig Added ex 19,20 functions and pop quiz 2021-01-22 17:42:03 -05:00
19_functions2.zig Added ex 19,20 functions and pop quiz 2021-01-22 17:42:03 -05:00
20_quiz3.zig Added ex 19,20 functions and pop quiz 2021-01-22 17:42:03 -05:00
21_errors.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
22_errors2.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
23_errors3.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
24_errors4.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
25_errors5.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
26_hello2.zig Added ex 21-26 for error handling 2021-01-30 20:00:32 -05:00
27_defer.zig Adding exs 27-32 2021-01-31 17:48:34 -05:00
28_defer2.zig Adding exs 27-32 2021-01-31 17:48:34 -05:00
29_errdefer.zig Adding exs 27-32 2021-01-31 17:48:34 -05:00
30_switch.zig Adding exs 27-32 2021-01-31 17:48:34 -05:00
31_switch2.zig Adding exs 27-32 2021-01-31 17:48:34 -05:00
32_unreachable.zig Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00
33_iferror.zig Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00
34_quiz4.zig Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00
LICENSE Added Ex. 2, polished script, added LICENSE 2021-01-03 12:21:11 -05:00
README.md Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00
ziglings Inserted ex. 32 unreachable, added quiz4. 2021-02-03 19:19:31 -05:00

README.md

ziglings

Welcome to ziglings. This project contains a series of incomplete exercises. By completing the exercises, you learn how to read and write Zig code.

This project was directly inspired by the brilliant and fun rustlings project for the Rust language.

Getting Started

Note: This currently uses a shell (Bash) script to automate the "game". A future update may remove this requirement. See TODO below.

Install the master release of the Zig compiler.

Verify the installation and version of zig like so:

$ zig version
0.7.1+<some hexadecimal string>

Clone this repository with Git:

git clone https://github.com/ratfactor/ziglings
cd ziglings

Then run the ziglings script and follow the instructions to begin!

./ziglings

Manual Usage

If you can't (or don't want to) use the script, you can manually verify each exercise with the Zig compiler:

zig run 01_hello.zig

TODO

Contributions are very welcome! I'm writing this to teach myself and to create the learning resource I wished for. There will be tons of room for improvement:

  • Wording of explanations
  • Idiomatic usage of Zig
  • Additional exercises
  • Re-write the ziglings script using the Zig build system (???)

Planned exercises:

  • Hello world (main needs to be public)
  • Importing standard library
  • Assignment
  • Arrays
  • Strings
  • If
  • While
  • For
  • Functions
  • Errors (error/try/catch/if-else-err)
  • Defer (and errdefer)
  • Switch
  • Unreachable
  • Pointers
  • Pointer sized integers
  • Multi pointers
  • Slices
  • Enums
  • Structs
  • Unions
  • Integer rules
  • Floats
  • Labelled blocks
  • Labelled loops
  • Loops as expressions
  • Optionals
  • Comptime
  • Inline loops
  • Anonymous structs
  • Sentinel termination
  • Vectors
  • Imports

The initial topics for these exercises were unabashedly cribbed from ziglearn.org.