Fixing return type.

master
Tomasz Półgrabia 2022-01-18 17:17:43 +01:00
parent 17cc53fb1e
commit 20e3ca26eb
1 changed files with 1 additions and 1 deletions

View File

@ -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) {