11 lines
170 B
Text
11 lines
170 B
Text
|
|
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
|