1
0
mirror of https://github.com/golang/go synced 2024-09-24 07:10:12 -06:00
go/test/ddd2.go

17 lines
270 B
Go
Raw Normal View History

// true
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package ddd
func Sum(args ...int) int {
s := 0
for _, v := range args {
s += v
}
return s
}