go test命令(Go语言测试命令)完全攻略 http://c.biancheng.net/view/124.html
go benchmark 性能测试 https://www.cnblogs.com/bergus/articles/go-benchmark-xing-neng-ce-shi.html……
package main
import (
amp;quot;fmtamp;quot;
)
func print(n int,x rune,y rune)(){
fmt.Printf(amp;quot;moving disk %d from pole %c to pole %c\namp;quot;,n,x,y)
}
func move(n int,a rune,b rune ...……