运行
格式化
停止
分享
赞助
package main import "fmt" func test() (int, string) { return 1, "abc" } func main() { _, s := test() fmt.Println(s) }