diff --git a/guide/src/reference.md b/guide/src/reference.md index a2b8718..0fbec5f 100644 --- a/guide/src/reference.md +++ b/guide/src/reference.md @@ -92,7 +92,8 @@ Prefix: Continue | Break | Return | - Match> | Term; + Match | + Try> | Term; Literal: 'true' | 'false'; @@ -121,8 +122,10 @@ ArrowBody: '=>' ; BlockBody: '{' '}'; FnMatch: '{' '}'; -Let: 'let' '=' ; -Var: 'var' '=' ; +Let: 'let' ; +Var: 'var' ; +VariablePattern: '=' ?; +VariableElse: 'else' ; If: 'if' ?; ThenExpression: 'then' ; @@ -138,7 +141,8 @@ Continue: 'continue'