RosettaCodeData/Task/Repeat-a-string/LiveCode/repeat-a-string.livecode

11 lines
170 B
Plaintext

on mouseUp
put repeatString("ha", 5)
end mouseUp
function repeatString str n
repeat n times
put str after t
end repeat
return t
end repeatString