A template for developing programs in ZIG.
Go to file Use this template
jakeg00dwin 1bde660103 added a setup script for installing zig and some other needed utilities. 2024-03-06 00:43:53 -08:00
scripts added a setup script for installing zig and some other needed utilities. 2024-03-06 00:43:53 -08:00
src added the zig init-exe basics 2024-03-06 00:16:39 -08:00
zig-cache added the files to ignore along with the zig-cache directory and a dot(invisible) placeholder in it. 2024-03-06 00:17:43 -08:00
.gitignore added the files to ignore along with the zig-cache directory and a dot(invisible) placeholder in it. 2024-03-06 00:17:43 -08:00
LICENSE Initial commit 2024-03-02 17:36:58 +00:00
README.md updated reame with the common zig commands. 2024-03-06 00:27:05 -08:00
build.zig added the zig init-exe basics 2024-03-06 00:16:39 -08:00

README.md

zig

A template for developing programs in ZIG.

Zig commands:

zig init-exe # Initializes current dir with hello world
zig init-lib # Initializes current dir with library app.

zig ast-check # looks for compile errors in files.
zig build-exe # Create executable from source or object files.
zig build-lib # Create library from source or object files.
zig build-obj # Create object from sourec or object files.
zig run # Create execuatble and run immediately.
zig test # Create and run a test build.
zig translate-c # convert C code to Zig code.

zen ???