Re: "Next" in Repeat?
Re: "Next" in Repeat?
- Subject: Re: "Next" in Repeat?
- From: Steve Ivy <email@hidden>
- Date: Tue, 23 Jan 2001 12:53:57 -0500
I've solved my other problem, but this one bit me earlier and I just skipped
it then - thanks for the info!
on 1/23/01 12:03 PM, Arthur J Knapp at email@hidden wrote:
>
Note: When you work with the "repeat with Variable in List"
>
syntax, and then you want to test "Variable" for
>
equality, you need to "dereference" it by using the
>
keyword "contents".
>
>
repeat with i in {1, 2, 3}
>
>
i -- item 1 of {1, 2, 3}
>
contents of i -- 1