-
Notifications
You must be signed in to change notification settings - Fork 1
Specification
rpip edited this page May 1, 2016
·
4 revisions
This is the formal specification of the Plex programming language. All implementations of the language are expected to conform to the minimum subset of the language that this specification requires.
Operator precedence from highest to lowest:
| operator | associativity |
|---|---|
| -> | right |
| , | left |
| = | right |
| or | left |
| and | left |
| in | left |
| with | left |
| +, - | left |
| *, / | left |
| . | left |
| not ! ^ | Nonassoc |
| == != >= <= > < := .. | Nonassoc |
- Integer
- Float
- String
- Atom
- List
- Record
- Tuple