Go函数、包和错误处理
Go函数、包和错误处理函数基本语法package mainimport( "fmt")/* func 函数名 (形参列表) (返回值列表) { 执行语句 return 返回值列表 }*/func cal (n1 float64, n2 float64, operator byte) float64 { var res float64 switch operator { case '+': res = n1 + n2 case '-': res = n1 - n