Loop structures: Difference between revisions

Content added Content deleted
(→‎[[AppleScript]]: Stupid! Wrong article.)
(AppleScript: repeat-until)
Line 1: Line 1:
==[[AppleScript]]==
[[Category:AppleScript]]
===repeat-until===
set i to 5
repeat until i is less than 0
set i to i - 1
end repeat

repeat
--endless loop
end repeat