如何读取 Zig 中的命令行参数?

问题描述 投票:0回答:1

如何使用 Zig 代码访问命令行参数?

启动这样的程序时:

$ path/my-program foo bar

我想在我的代码中获取字符串

path/my-program
foo
bar
。作为 c 风格字符串或 Zig 切片。

command-line-arguments zig
1个回答
0
投票

std.os.argv提供对命令行参数的访问。

© www.soinside.com 2019 - 2024. All rights reserved.