[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
()                       Grouping

   ((exp1 op1 exp2) op2 exp3)

    The group operator () is used to force an order of evaluation.  For
    example:

        i = 1 + 3 * 5;          # i == 16, * has higher precedence than +
        j = ( 1 + 3 ) * 5;      # j == 20, force 1 + 3

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson