Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (23 loc) · 665 Bytes

Readme.md

File metadata and controls

34 lines (23 loc) · 665 Bytes

lng

Final project for Theory of Programming Languages @ Universidad Panamericana

Compilation

We use the zig build system. Make sure to install the latest stable release (v0.11) here to be able to compile the project.

To run the CLI application:

zig build run

To run all tests under ./test

zig build test

To enable release, faster builds you can use Zig's flag -Doptimize with ReleaseFast, ReleaseSafe, etc. For example:

zig build -Doptimize=ReleaseFast run

For more help execute:

zig build --help