package main import "fmt" func msg(){ fmt.Println("CAUCSE LOVE.") } func main() { for i:=0;i<5;i++{ msg() } }