str_repeat

str_repeat

[code]
func StrRepeat(input string, multiplier int) string {
	return strings.Repeat(input, multiplier)
}
[/code]