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