12 lines
139 B
Go
12 lines
139 B
Go
package slices
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestReduce(t *testing.T) {
|
|
s := Of(1, 2, 3)
|
|
fmt.Println(Reduce(s, SumReducer[int]))
|
|
}
|