Run Command
If you want to run a version of Zig without setting it as your default, the
run command is your friend.
zig version# 0.13.0
zvm run 0.11.0 version# 0.11.0
zig version# 0.13.0This can be helpful if you want to test your project on a newer version of Zig without having to switch between bins, or on alternative flavor of Zig.
How to use with alternative VMUs
Section titled “How to use with alternative VMUs”Make sure you switch your VMU before using run.
zvm vmu zig machzvm run mach-latest version# 0.14.0-dev.1911+3bf89f55cIf you would like to run the currently set Zig, please keep using the standard
zig command.