如何向 Haskell 操作系统返回成功或失败?

发布于 2024-11-28 02:46:22 字数 267 浏览 1 评论 0原文

最简单的 Unix 工具是 truefalse,这两个小程序除了分别向操作系统返回 0 和 1 并退出之外什么也不做。 C 语言的示例可能如下所示:

// true - does nothing successfully
int main(void) {
  return 0;
}

通过搜索,我还没有找到在 Haskell 中实现此类功能的方法。 IO monad 中有什么可以做到这一点吗?

The simplest Unix tools are true and false, little programs that do nothing but return 0 and 1 respectively to the operating system and exit. An example in C might look like the below:

// true - does nothing successfully
int main(void) {
  return 0;
}

Through searching, I haven't been able to find a way to implement this kind of functionality in Haskell. Is there anything in the IO monad that can do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝天 2024-12-05 02:46:22

Use one of the functions defined in System.Exit.

胡大本事 2024-12-05 02:46:22

有一些 exit 函数 你应该能够使用。

There are a few exit functions you should be able to use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文