在其他语言中,例如 PHP,我们使用这种样式
/**
* @param int $num some explain
* @param string $type some explain
* @return array
*/
function Foo($num, $type) {
return [];
}
我尝试在golang中使用它,但似乎godoc
无法识别它:
// Foo <-(It can be recognized by godoc) Test function
// @param s string <-(But this one couldn't) some explain
func Foo(s string) []string {
return strings.Split(s, " ")
}
那么,如何godoc
知道呢?