aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-01-03 12:21:11 -0500
committerDave Gauer <dave@ratfactor.com>2021-01-03 12:21:11 -0500
commitd618414c9cd144e3d63f2b12df7b512b98df041c (patch)
tree2b62be68efd03c9454eab640966abf0dc0d21793 /README.md
parent3b5678815f010bd016ca561e4672d2d83271cb2e (diff)
downloadziglings-d618414c9cd144e3d63f2b12df7b512b98df041c.tar.gz
ziglings-d618414c9cd144e3d63f2b12df7b512b98df041c.tar.bz2
ziglings-d618414c9cd144e3d63f2b12df7b512b98df041c.tar.xz
ziglings-d618414c9cd144e3d63f2b12df7b512b98df041c.zip
Added Ex. 2, polished script, added LICENSE
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 3 insertions, 11 deletions
diff --git a/README.md b/README.md
index 2e49f83..1bb905d 100644
--- a/README.md
+++ b/README.md
@@ -39,20 +39,12 @@ Then run the `ziglings` script and follow the instructions to begin!
## Manual Usage
If you can't (or don't want to) use the script, you can manually verify each
-exercise with the Zig compiler.
-
-Some exercises need to be "run" (compiled and executed):
+exercise with the Zig compiler:
```bash
zig run exercises/01_hello.zig
```
-Some exercises need to be tested:
-
-```bash
-zig test exercises/02_hello_test.zig
-```
-
## TODO
Contributions are very welcome! I'm writing this to teach myself and to create
@@ -65,8 +57,8 @@ the learning resource I wished for. There will be tons of room for improvement:
Planned exercises:
-* [x] Hello world
-* [ ] Hello tests
+* [x] Hello world (main needs to be public)
+* [x] Importing standard library
* [ ] Assignment
* [ ] Arrays
* [ ] If