PHP
·
发表于 5年以前
·
阅读量:8293
使用开源库github.com/MouseSun/goprint来完成
package common
import (
"github.com/MouseSun/goprint"
)
//P is a quick function to print struct.
func P(title string, c interface{}) {
goprint.P(title, c)
}