Create a string by repeating another:
fmt.Println(strings.Repeat("Go", 3)) // "GoGoGo"
fmt.Println(strings.Repeat("-", 10)) // "----------"
Repeat is useful for creating separators, padding, or visual elements. It's more efficient than a loop with concatenation.