minigrep-zig

A Zig version of the Rust book's minigrep tutorial program

MIT License

Stars
11
Committers
1

Minigrep (in Zig)

This project recreates the mini-grep I/O project from the Rust Book in Zig.

Install

$ git clone https://github.com/tristanisham/minigrep-zig; cd minigrep-zig

Need to install Zig? Try ZVM.

Run the program

$ zig build run -- "query" ./path/to/file

You can also find your compiled binary in zig-out.

Build for Release

zig build -Doptimize=ReleaseFast