mpl/precedence.csv
developtheweb 57efd37df6 Initial commit: MPL specification and M0 documentation
- Complete language specification (math_prog_lang.md)
- M0 blocker tracking issue template
- Glyph escape sequences reference
- Operator precedence table
- Example programs from specification
- Project README

Ready for pre-M0 implementation phase
2025-07-25 12:02:20 -04:00

489 B
Raw Blame History

1LevelOperatorsAssociativityDescription
29function applicationleftFunction call f(x) or f x
38↯ ✎ ? ⧈ ⏲ (prefix)rightUnary prefix operators
47leftFunction composition
56× ÷ leftMultiplication and division
65+ -leftAddition and subtraction
74= ≠ < > ≤ ≥ ≈ non-associativeComparison operators
83leftLogical AND
92leftLogical OR
101rightImplication
110rightAssignment
12-1leftParallel composition
13-2;leftStatement sequencing