1 2 3 4 5 6 7
package main import "strings" func Repeat(character string, times int) string { return strings.Repeat(character, times) }