package main import ( "fmt" helloworld "git.brueck.tools/jackhead/go-playground.git/helloWorld" ) func main() { for i := range 5 { fmt.Println(helloworld.Greeting(i)) } }