Skip to content

Commit

Permalink
closes ratfactor#223
Browse files Browse the repository at this point in the history
  • Loading branch information
chrboesch committed Apr 9, 2023
1 parent 2570428 commit 88b0ff9
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -168,6 +179,7 @@ Core Language
* [X] Interfaces
* [X] Working with C
* [ ] String formatting
* [ ] Bit manipulation

## Contributing

Expand Down

0 comments on commit 88b0ff9

Please sign in to comment.