go-playground/main/main.go
2025-04-09 23:19:21 +02:00

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))
}
}