Repeat returns a new string consisting of count copies of the string s.
package main import ( "fmt" "strings" ) func main() { fmt.Println("ba" + strings.Repeat("na", 2)) }