如何在单赋值 C (SAC) 中访问 argv/argc?
argv
是 SAC 字符串数组,还是传统的 C 字符串数组?
文档中有 CommandLine.sac ,但我不知道如何使用 SAC 的 API。
Is argv
a SAC array of strings, or a traditional C array of strings?
There's CommandLine.sac in the docs, but I have no idea how to use SAC's API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在版本 (1.0) 中,您可以使用 argv(1) 函数。
In version (1.0) you can use the argv(1) function.
SAC 两者都没有(实际上更糟):SAC 在 CommandLine 模块中提供了 argv() ,返回一个包含所有参数连接的字符串:
SAC does neither (actually worse): SAC provides
argv()
in theCommandLine
module, returning a string with all the arguments concatenated: