mirror of
https://github.com/golang/go
synced 2024-11-11 19:11:35 -07:00
68796b0270
No longer a distinct type; now a property of func types. R=ken2 CC=golang-dev https://golang.org/cl/197042
17 lines
270 B
Go
17 lines
270 B
Go
// 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
|
|
}
|
|
|