Add short circuit for the logical operators
wysohn opened this issue ยท 0 comments
For && for example, if the first boolean is false, the consecutive logical operations should be ignored as the result will be false anyway.
IF 1 == 2 && 2 == 2
For || for example, if the first boolean is true, the consecutive logical operations should be ignored as the result will be true anyway.
IF 1 == 1 || 2 > 5