Left Parenthesis (()

→full documentation

( ...: Begin Expression

Starts an expression, and only one expression. Must end with a corresponding ).

( supercedes any precedence order, so that an expression in () is evaluated fully before it can be used in the outer context.

↗️
    1 + 2 - 3
0

    (1 + 2) - 3
0