package main import "fmt" func greet(name string, times int) { for i := 0; i < times; i++ { fmt.Println("Hello,", name) } } func main() { greet("Maria", 2) }
Click Run to execute this code.