gotdd/repeat.go

10 lines
146 B
Go
Raw Permalink Normal View History

2022-01-20 04:20:12 +00:00
package main
func Repeat(character string) string {
var repeated string
for i := 0; i < 5; i++ {
repeated += character
}
return repeated
}