aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-04-09 19:39:24 +0200
committerGitHub <noreply@github.com>2023-04-09 19:39:24 +0200
commit420acb781b24f75915ac49591bb0284050c12512 (patch)
tree0859c560de20eab14ecd6b00b0ea3fbf06c0af98 /README.md
parentb478c1bff44226b2b0c04f0aa832461f04d7f802 (diff)
parentcff8aa2e521a6ee5c0b9818177a0799b5f26351e (diff)
Merge pull request #226 from chrboesch/adjust_advance
Adjustment of the 'Advanced usage' in the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 16 insertions, 4 deletions
diff --git a/README.md b/README.md
index adfb4b2..e734c75 100644
--- a/README.md
+++ b/README.md
@@ -102,14 +102,14 @@ It can be handy to check just a single exercise or _start_ from a single
exercise:
```bash
-zig build 19
-zig build 19_start
+zig build -Dn=19
+zig build -Dn=19 start
```
You can also run without checking for correctness:
```bash
-zig build 19_test
+zig build -Dn=19 test
```
Or skip the build system entirely and interact directly with the compiler
@@ -123,7 +123,18 @@ Calling all wizards: To prepare an executable for debugging, install it
to zig-cache/bin with:
```bash
-zig build 19_install
+zig build -Dn=19 install
+```
+
+To get a list of all possible options, run:
+
+```bash
+zig build -Dn=19 -l
+
+ install Install 019_functions2.zig to prefix path
+ uninstall Uninstall 019_functions2.zig from prefix path
+ test Run 019_functions2.zig without checking output
+ ...
```
## What's Covered
@@ -168,6 +179,7 @@ Core Language
* [X] Interfaces
* [X] Working with C
* [ ] String formatting
+* [ ] Bit manipulation
## Contributing