Replace ints with ints

This commit is contained in:
oohira 2017-01-14 00:34:14 +09:00
parent 8dcf72d27d
commit d4b81ba058

View File

@ -8,7 +8,7 @@ package main
import "fmt" import "fmt"
// Here's a function that will take an arbitrary number // Here's a function that will take an arbitrary number
// of `ints` as arguments. // of `int`s as arguments.
func sum(nums ...int) { func sum(nums ...int) {
fmt.Print(nums, " ") fmt.Print(nums, " ")
total := 0 total := 0