10 lines
150 B
AppleScript
10 lines
150 B
AppleScript
|
|
repeat
|
||
|
|
set a to random number from 0 to 19
|
||
|
|
if a is 10 then
|
||
|
|
log a
|
||
|
|
exit repeat
|
||
|
|
end if
|
||
|
|
set b to random number from 0 to 19
|
||
|
|
log a & b
|
||
|
|
end repeat
|