1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 01:57:02 +09:00

Add build parameter to start at a specific exercise

This commit is contained in:
Michael Cooper 2024-08-08 08:23:14 -07:00
parent 94d6a4da5f
commit 70b0522cb2
No known key found for this signature in database
2 changed files with 28 additions and 1 deletions

View file

@ -69,7 +69,7 @@ reading these.
## A Note About Versions
**Hint:** To check out Ziglings for a stable release of Zig, you can use
the appropriate tag.
the appropriate tag.
The Zig language is under very active development. In order to be
current, Ziglings tracks **development** builds of the Zig
@ -128,6 +128,12 @@ It can be handy to check just a single exercise:
zig build -Dn=19
```
Or run all exercises, starting from a specific one:
```
zig build -Ds=27
```
Or let Ziglings pick an exercise for you:
```