Files
go_with_tests/iteration/iteration.go

13 lines
184 B
Go

package iteration
const repeatCount = 5
func Repeat(character string) string {
var repeated string
for range repeatCount {
repeated = repeated + character
}
return repeated
}