> For the complete documentation index, see [llms.txt](https://go.xiao5.info/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://go.xiao5.info/di-si-bu-fen-shi-ji-ying-yong/18.0/18.10.md).

# 其他

如何在程序出错时终止程序：

```go
if err != nil {
   fmt.Printf("Program stopping with error %v", err)
   os.Exit(1)
}
```

或者：

```go
if err != nil { 
	panic("ERROR occurred: " + err.Error())
}
```

## 链接

* [目录](https://github.com/MartialBE/the-way-to-go_ZH_CN/blob/master/eBook/directory.md)
* 上一节：[网络和网页应用](/di-si-bu-fen-shi-ji-ying-yong/18.0/18.9.md)
* 下一节：[出于性能考虑的最佳实践和建议](/di-si-bu-fen-shi-ji-ying-yong/18.0/18.11.md)
