summaryrefslogtreecommitdiff
path: root/repeat.go
blob: 656fe1ef5d12d205f2d55d91206145d250f9da07 (plain)
1
2
3
4
5
6
7
package main

import "strings"

func Repeat(character string, times int) string {
	return strings.Repeat(character, times)
}