gokursu/functions/demo3.go
2024-01-14 17:29:53 +03:00

10 lines
156 B
Go

package functions
func AddVariadic(numbers ...int) int{
total := 0
for i := 0; i < len(numbers); i++ {
total = total + numbers[i]
}
return total
}