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