Adding go func examples and global .gitignore.

master
Tomasz Półgrabia 2022-01-17 22:36:10 +01:00
parent 576d73339c
commit 17cc53fb1e
2 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
*.iml

View File

@ -0,0 +1,21 @@
package main
import (
"fmt"
"github.com/mariomac/gostream/stream"
)
func isEven(n int) bool {
return n%2 == 0
}
func main() {
fmt.Println("Hello World")
stream.Of(0, 1, 2, 3, 4).
Filter(func(n int) {
return n%2 == 0
}).
ForEach(func(n int) {
fmt.Printf("Number %v\n", n)
})
}