summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-08-09 10:21:08 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-08-09 10:21:08 +0000
commite2f356d95c08260e14b5f8db26b4f4a3c6a90dba (patch)
tree761b1f5e6859e9fbd0ff79758a26ee83daa27043 /README.md
parent94d6a4da5f8b79348cd66f0fd2281a7593c91497 (diff)
parent70b0522cb2ab7d886bfd01ec96503b0e21e043a5 (diff)
Merge pull request 'Add build parameter to start at a specific exercise' (#140) from mythmon/ziglings-exercises:build-start-from into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/140
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4336743..5385cff 100644
--- a/README.md
+++ b/README.md
@@ -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:
```