decorative banner

Expression values


    The value of an expression is the value of the last statement evaluated. For example, in the following expressions the results are the same:

    x = rotation * 10; [x, 20]

    [rotation * 10, 20]