From e1b25a8c3bed337aa18b0918034605d4c9882c1c Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Wed, 6 Mar 2024 00:27:05 -0800 Subject: [PATCH] updated reame with the common zig commands. --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56125b0..15823fb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ # zig -A template for developing programs in ZIG. \ No newline at end of file +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 ??? +``` +