Hi Thom,

I believed the computer did the short circuiting automatically on these
> boolean expressions.
>
In ooRexx expressions are wholly evaluated, unless an error occurs during
evaluation, no short-cut evaluation like in C.

Seems like var++ might be more a useful shortcut than var = var + 1
>
ooRexx provides var += 1 (and similar for other operators) short for var =
var + 1


On Sun, Sep 6, 2020 at 2:09 AM ts2261 <ts2...@gmail.com> wrote:

> Well. I am confused.  I believed the computer did the short circuiting
> automatically on these boolean expressions. What does the new coding style
> do to help?
> Seems like
> var++
> might be more a useful shortcut than
> var = var + 1
> Just my humble and rare opinion since I generally just listen and try to
> learn.
> Thanks,
> Thom
>
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to