Update README.md

This commit is contained in:
Chris Boesch 2023-04-13 10:41:34 +02:00 committed by GitHub
parent 3b3f802cc8
commit 540042576e

View file

@ -38,21 +38,21 @@ Install a [development build](https://ziglang.org/download/) of the Zig compiler
Verify the installation and build number of `zig` like so: Verify the installation and build number of `zig` like so:
```bash ```
$ zig version $ zig version
0.11.0-dev.2560+xxxxxxxxx 0.11.0-dev.2560+xxxxxxxxx
``` ```
Clone this repository with Git: Clone this repository with Git:
```bash ```
$ git clone https://github.com/ratfactor/ziglings $ git clone https://github.com/ratfactor/ziglings
$ cd ziglings $ cd ziglings
``` ```
Then run `zig build` and follow the instructions to begin! Then run `zig build` and follow the instructions to begin!
```bash ```
$ zig build $ zig build
``` ```
@ -102,28 +102,28 @@ Version-0.11.0-dev.2560+602029bb2
It can be handy to check just a single exercise or _start_ from a single It can be handy to check just a single exercise or _start_ from a single
exercise: exercise:
```bash ```
zig build -Dn=19 zig build -Dn=19
zig build -Dn=19 start zig build -Dn=19 start
``` ```
You can also run without checking for correctness: You can also run without checking for correctness:
```bash ```
zig build -Dn=19 test zig build -Dn=19 test
``` ```
Or skip the build system entirely and interact directly with the compiler Or skip the build system entirely and interact directly with the compiler
if you're into that sort of thing: if you're into that sort of thing:
```bash ```
zig run exercises/001_hello.zig zig run exercises/001_hello.zig
``` ```
Calling all wizards: To prepare an executable for debugging, install it Calling all wizards: To prepare an executable for debugging, install it
to zig-cache/bin with: to zig-cache/bin with:
```bash ```
zig build -Dn=19 install zig build -Dn=19 install
``` ```
@ -191,6 +191,6 @@ the learning resource I wished for. There will be tons of room for improvement:
* Idiomatic usage of Zig * Idiomatic usage of Zig
* Maybe additional exercises? * Maybe additional exercises?
Please see CONTRIBUTING.md in this repo for the full details. Please see [CONTRIBUTING](https://github.com/ratfactor/ziglings/blob/main/CONTRIBUTING.md) in this repo for the full details.