你如何让Golang示例可玩?
我有以下代码:
func Example_authenticate() {
fmt.Println("hello")
// Output: JSON
}
我是否需要在某处添加可播放代码以在Doc中添加?
答案 0 :(得分:4)
您必须使用godoc
标记运行-play
:
$ godoc --help
..........
-play=false: enable playground in web interface
例如,运行godoc -http=:9020 -play
,然后转到http://localhost:9020/pkg/encoding/json/#example_Unmarshal
在本地安装godoc
:
go get code.google.com/p/go.tools/cmd/godoc