在 ocaml 中运行可执行(Windows)文件
快问。如何在ocaml中运行可执行文件?我相信这是可能的,但我不知道如何实现。
请提供示例代码。
Quick question. How to run an executable file in ocaml? I believe this is possible, but I don't know how.
Please provide an example code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想运行程序而不与其通信,请使用
Sys.command
。对于更复杂的情况,您需要使用
Unix< 中的 函数/代码>模块。尽管有这个名字,大多数都可以在 Windows 下运行。例如,如果您需要从命令获取输出:
If you just want to run a program and not communicate with it, use
Sys.command
.For more complex cases, you need to use the functions in the
Unix
module. Despite the name, most of them work under Windows. For example, if you need to get output from a command: