- Zig 0.15.2 — install with
brew install zig
ziginterpreter/
├── src/
│ ├── ast.zig
│ ├── value.zig
│ ├── env.zig
│ ├── interp.zig
│ └── examples.zig
├── tests/
│ └── tests.zig
└── build.zig
From the project root:
zig build test --summary allThe build.zig file wires up module dependencies so that each file can
import the others correctly. If you add a new file to src/ that imports
another module, you need to add a corresponding addImport call in build.zig.