Delimiters
- Last UpdatedJun 06, 2017
- 1 minute read
The following five delimiters are used to identify operands and to build expressions within expressions (recursive expressions).
|
Delimiter |
Example(s) |
Description |
|---|---|---|
|
Parentheses - (...) |
((10 + 1) * 20) |
Used for setting precedence. |
|
Ask("OK?") |
Used to define a function argument. |
|
|
Not(Ask("OK?")) |
Used to nest expressions. |
|
|
Quotes – "..." |
‘Text String" |
Used to identify a string. |
|
Comma -, |
N/A |
Used to separate function parameters, which can be operands or expressions. |