At 2:03 PM -0400 9/21/01, Gregory Lypny wrote:
> Can the switch control structure handle inequalities in the cases,
>such as
>
> case > = 0.235 ?
Not as you specified above, but instead of:
switch x
case 1
break
case 2
end switch
You can do:
switch
case x = 1
break
case x = 2
break
case x > 2
end switch
You can put any boolean you like in that way.
regards,
gc
Archives: http://www.mail-archive.com/[email protected]/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.