Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - operator precedence table http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 Operator precedence table
------------------------------------------------------------------------------
 Operator type            Operators                       Evaluation
------------------------------------------------------------------------------
 Unary operators          +, -                            Right to left
 Binary operators         *, /, %, **, +, -               Left to right
 Relational operators     <, >, <=, >=, ==, =, !=, <>     Left to right
 Logical operators        .not., .and., .or.              Left to right
------------------------------------------------------------------------------

 The table shows that the unary operators, sign plus + and sign negation -
 are the first expressions to be evaluated. Next come the mathematical and
 character binary operators. Multiplication *, division /, modulus % and
 exponentiation ** are evaluated before addition + and subtraction -.

 Following the mathematical and character binary operators in precedence are
 the relational operators. The less than and greater than (and their
 corresponding =< >= operators) are evaluated before the equality =, == and
 inequality <>, != operators. Finally, of the logical operators, .not. is
 evaluated before .and. which is evaluated before .or.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson