10 lines
203 B
Text
10 lines
203 B
Text
|
|
on mouseUp
|
||
|
|
repeat with n = 0 to 10000000
|
||
|
|
if selfDescNumber(n) then
|
||
|
|
put n into selfNum[n]
|
||
|
|
end if
|
||
|
|
end repeat
|
||
|
|
combine selfNum using comma
|
||
|
|
put selfNum
|
||
|
|
end mouseUp
|