标签:blog http 使用 ar div 时间 服务器 log
该指南也有其他语言版本:
这个指南构建在 Go Playground 之上,这是一个运行在 golang.org 的服务器上的一个 Web 服务。
服务接收 Go 程序的输入,且在沙盒里编译、链接和运行, 然后返回输出。
对于在 Playground 运行的程序的限制是:
Playground 使用最后发布的 Go 的稳定版本。
package main import ( "fmt" "time" ) func main() { fmt.Println("Welcome to the playground!") fmt.Println("The time is", time.Now()) }
标签:blog http 使用 ar div 时间 服务器 log
原文地址:http://www.cnblogs.com/liyuzhao/p/3887302.html