Impossible "If"?
Impossible "If"?
- Subject: Impossible "If"?
- From: Ehsan Saffari <email@hidden>
- Date: Thu, 10 May 2001 23:51:26 -0600
Why don't the ifs ever come true?
set x to {3, 7, 11}
repeat with h in x
display dialog h
if h = 3 then
--do this
else if h = 7 then
--do that
else if h = 11 then
--do other
end if
end repeat
cheers
ehsan