2022-07-26:以下go语言代码输出什么?A:5;B:hello;C:编译错误;D:运行错误。package mainimport ( "fmt")type integer intfunc (i integer) String() string { return "hello"}func main() { fmt.Println(integer(5))}