1. Re: [If/then and sequences...]
On Wed, 30 Aug 2000 22:16:13 -0400, irv wrote:
>On Wed, 30 Aug 2000, LEVIATHAN wrote:
>
>> Speaking of inability to handle if statements...
>> Well, I know something Euphoria didn't take from me...
>>
>> if something = 1 OR 2 OR 3 OR 4 OR 5 OR 6...
>> Multiple AND/OR/X* statements...
>> Hmm, shouldn't this be allowed tho?
>> Blessed Be! --"LEVIATHAN"
>
>Yes, it should, unless you prefer the "set" concept:, which I think is
neat:
>if something in {1,2,3,4,5,6} then.....
Perhaps you missed my previous reply but what's wrong with:
if find( something, {1,2,3,4,5,6,...} ) then...
It's just as easy to follow and there's no need to introduce a new keyword.
-- Brian