package main import "strings" func Repeat(character string, times int) string { return strings.Repeat(character, times) }