Parentheses

When the language processor finds an expression in parentheses, it evaluates the value of the expression inside the parentheses first.

For example:
  • The value of 10 * ( 3 + 4 ) is: 70
  • The value of 10 * ( 3 || 4 ) is: 340.
Note, however, that if there is a symbol or a string immediately to the left of the left parenthesis, this denotes a function. This concept is discussed later in Functions.