> For the complete documentation index, see [llms.txt](https://denglj.gitbook.io/essential-go/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://denglj.gitbook.io/essential-go/01-getting-started/zai-xian-bian-cheng-cao-chang-shang-yun-hang-go.md).

# 在编程操场上运行Go

编程操场是指您可以运行一小段代码的在线服务。借助它，在手机和平板等便携设备上都可以执行代码。

### Go语言在线编程操场

[The Go Playground](https://play.golang.org/) 或者稍微更漂亮一点的 [The Go Play Space](https://goplay.space/)。

Go Playground上有一些限制：

* 只支持标准库，不支持第三方库；
* 网络的，文件I/O不可用；
* 时间是固定的。

编程操场可以提供永久连接让您分享代码片段。

### Glot

&#x20;[Glot.io](https://glot.io/new/go) 可以执行多种编程语言，包括Go。

它的限制是：

* 只支持标准库，不可以用第三方库；
* 网络功能不可用；
* 没办法做代码格式化。

同样的，Glot也支持可分享的代码片段。

### Repl.it

&#x20;[Repl.it](https://repl.it/repls) 也可以执行多种编程语言，包括Go。

它的限制是：

* 只可以使用标准库，不支持第三方库。
