如何使用 Zig 代码访问命令行参数?
启动这样的程序时:
$ path/my-program foo bar
我想在我的代码中获取字符串
path/my-program
foo
bar
std.os.argv提供对命令行参数的访问。