原创 函數有多個返回值

package main import “fmt” //無參多個返回值的函數 func myfunc01( ) (int,int,int) { return 1,2,3 } //go官方推薦方法 func myfunc02( )