mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 10:36:43 +00:00
* change documentation theme and structure * add config files * fix links * add build doc command Co-authored-by: Ruidy <rnemausat@newstore.com>
260 B
260 B
| title | date |
|---|---|
| Sum | 2022-03-21T13:50:29-04:00 |
Sum adds elements of the slice.
package main
import (
"fmt"
u "github.com/rjNemo/underscore"
)
func main() {
nums := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
fmt.Println(u.Sum(nums)) // 45
}