Fixing return type.
parent
17cc53fb1e
commit
20e3ca26eb
|
@ -12,7 +12,7 @@ func isEven(n int) bool {
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Hello World")
|
fmt.Println("Hello World")
|
||||||
stream.Of(0, 1, 2, 3, 4).
|
stream.Of(0, 1, 2, 3, 4).
|
||||||
Filter(func(n int) {
|
Filter(func(n int) bool {
|
||||||
return n%2 == 0
|
return n%2 == 0
|
||||||
}).
|
}).
|
||||||
ForEach(func(n int) {
|
ForEach(func(n int) {
|
||||||
|
|
Loading…
Reference in New Issue