7 lines
99 B
Text
7 lines
99 B
Text
def (s * n) :case (string? s)
|
|
with outstring
|
|
repeat n
|
|
pr s
|
|
|
|
("ha" * 5)
|
|
=> "hahahahaha"
|