updated reame with the common zig commands.

This commit is contained in:
jakeg00dwin 2024-03-06 00:27:05 -08:00
parent de4f0577e8
commit e1b25a8c3b
1 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,21 @@
# zig # zig
A template for developing programs in ZIG. A template for developing programs in ZIG.
## Zig commands:
```sh
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 ???
```