1
2
Fork
You've already forked examples.zig
0
Hodgepodge of examples collected while learning zig
  • Zig 100%
Guido Schmidt 587a17a987
Some checks failed
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
refactor(examples/datastructures/generator): add prompt
2025年11月27日 09:29:06 +01:00
.github/workflows refactor: adapt to zig 0.15.1, reorganize code + change build.zig 2025年09月02日 00:39:32 +02:00
data refactor: adapt to zig 0.15.1, reorganize code + change build.zig 2025年09月02日 00:39:32 +02:00
src refactor(examples/datastructures/generator): add prompt 2025年11月27日 09:29:06 +01:00
.gitignore fix: adjust to zig-0.15.0-dev 2025年05月26日 09:58:04 +02:00
.zigversion refactor: update .zigversion 2025年09月02日 00:43:05 +02:00
build.zig docs(README): fix and explain running a single example 2025年11月27日 09:28:43 +01:00
README.md docs(README): fix and explain running a single example 2025年11月27日 09:28:43 +01:00

CI

zig Examples

Hodgepodge of examples created while learning zig

Bulid and run the examples

Build all examples:

zig build -- all

Build a single example with zig build -- ./src/examples/path/to/example.zig, e.g.

zig build -- ./src/examples/datastructures/reactivity.zig

Bulid + run a single example with zig build run-$EXAMPLE_FILE_NAME -- ./src/examples/path/to/example.zig, e.g.

zig build run-reactivity -- ./src/examples/datastructures/reactivity.zig