Co-authored-by: Joe Chen <jc@unknwon.io>
This commit is contained in:
Haigang Zhou
2022-05-03 11:15:14 +08:00
committed by GitHub
parent 5b6d984aa0
commit 82026084b3
16 changed files with 52 additions and 49 deletions

View File

@@ -1,9 +1,9 @@
# 2.8 Go 解释器
因为 Go 具有像动态语言那样快速编译的能力,自然而然地就有人会问 Go 语言能否在 REPLread-eval-print loop编程环境下实现。Sebastien Binet 已经使用这种环境实现了一个 Go 解释器,你可以在这个页面找到:[https://github.com/sbinet/igo](https://github.com/sbinet/igo)。
因为 Go 具有像动态语言那样快速编译的能力,自然而然地就有人会问 Go 语言能否在 REPL (read-eval-print loop) 编程环境下实现。Sebastien Binet 已经使用这种环境实现了一个 Go 解释器,你可以在这个页面找到:[https://github.com/sbinet/igo](https://github.com/sbinet/igo)。
## 链接
- [目录](directory.md)
- 上一节:[Go 运行时runtime](02.7.md)
- 上一节:[Go 运行时 (runtime)](02.7.md)
- 下一章:[编辑器、集成开发环境与其它工具](03.0.md)