finish TS grammar

This commit is contained in:
2025-09-21 13:19:07 +02:00
parent b4b6edd2f2
commit dcc8500e2c
5 changed files with 35678 additions and 6832 deletions

View File

@@ -365,7 +365,10 @@ def add = a -> b -> a + b
- `if cond then a else b`
- `{field1: val1, field2: val2}` field construction
- `match expr with <match cases>`: [pattern matching](##pattern-matching)
- `'Tag expr`
- `a = b` the [equality operator](##equality-operator)
- `-a`: identical to `\`-a\`(a)` name: "negate"
- `a ^ b`: identical to `\`a^b\`(a, b)` name: "exponent"
- `a + b`: identical to `\`a+b\`(a, b)` name: "sum"
- `a - b`: identical to `\`a-b\`(a, b)` name: "difference"
- `a * b`: identical to `\`a*b\`(a, b)` name: "times"