标签:code 大写 ret port -- fun pac 字母 import
package main
import (
"fmt"
)
func main() {
res := plus(1,2)
fmt.Println("1+2=",res)
}
//定义私有函数,首字母小写。首字母大写,定义公有函数
func plus(a,b int)int {
return a+b
}
标签:code 大写 ret port -- fun pac 字母 import
原文地址:https://www.cnblogs.com/promenader/p/9792738.html