5 lines
112 B
Swift
5 lines
112 B
Swift
func * (left:String, right:Int) -> String {
|
|
return String(repeating:left, count:right)
|
|
}
|
|
|
|
print ("HA" * 5)
|