Deployed b376707 to master with MkDocs 1.2.4 and mike 1.0.1

This commit is contained in:
GitHub Action
2022-06-03 09:12:51 +00:00
parent 87e2c62b9f
commit bed468b762
5 changed files with 14 additions and 10 deletions
+1
View File
@@ -748,6 +748,7 @@ switch(f(x))
<h2 id="expressions">Expressions</h2>
<p>```c
Expr ::= '(' LamArgs ')' '=&gt;' Block(Stmt) // Anonymous function (x) =&gt; x + 1
| '(' BinOp ')' // Operator lambda (+)
| 'if' '(' Expr ')' Expr 'else' Expr // If expression if(x &lt; y) y else x
| Expr ':' Type // Type annotation 5 : int
| Expr BinOp Expr // Binary operator x + y