
zig
List of commands for zig:
-
zig:tldr:2850a zig: Use Zig as a drop-in C++ compiler.$ zig c++ ${filename-cpp}try on your machineexplain this command
-
zig:tldr:2f5a0 zig: Reformat Zig source into canonical form.$ zig fmt ${filename-zig}try on your machineexplain this command
-
zig:tldr:51ffa zig: Compile and run the project in the current directory.$ zig build runtry on your machineexplain this command
-
zig:tldr:7559f zig: Initialize a `zig build` application.$ zig init-exetry on your machineexplain this command
-
zig:tldr:b14c5 zig: Initialize a `zig build` library.$ zig init-libtry on your machineexplain this command
-
zig:tldr:c69d3 zig: Compile the project in the current directory.$ zig buildtry on your machineexplain this command
-
zig:tldr:f416c zig: Create and run a test build.$ zig test ${filename-zig}try on your machineexplain this command
-
zig:tldr:ff112 zig: Use Zig as a drop-in C compiler.$ zig cc ${filename-c}try on your machineexplain this command