Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 176 Bytes

6.md

File metadata and controls

6 lines (5 loc) · 176 Bytes

函数

  • func eval(a, b int, op string) int
  • func eval(a, b int, op string) (int, int)
  • 函数可以返回多个值
  • 可变参数列表func sum(numbers ...int) int