Grouping¶
Expressions surrounded by parenthesis (()
) are evaluated first.
Syntax
(expr)
Example
1 - (2 + 4)
# -5
Expressions surrounded by parenthesis (()
) are evaluated first.
(expr)
1 - (2 + 4)
# -5