Re: While loop
Re: While loop
- Subject: Re: While loop
- From: Jolly Roger <email@hidden>
- Date: Thu, 04 Jan 2001 15:09:21 -0600
- Replyto: email@hidden
on 1/4/2001 2:41 PM, Stephen Gross wrote:
>
Is there a way to do a while loop in applescript?
set x to 0
repeat while (x < 100)
set x to x + 1
log x
end repeat