From e59e69118302b6a8a9d8c09ed2d5032d432ad33a Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Mon, 2 Nov 2020 21:36:36 -0700 Subject: add loops --- syntax.md | 4 ---- 1 file changed, 4 deletions(-) (limited to 'syntax.md') diff --git a/syntax.md b/syntax.md index 74e5cc3..9f7fc59 100644 --- a/syntax.md +++ b/syntax.md @@ -3,10 +3,6 @@ ### Statements ```PEG -WhileStatement ← 'while' Expression Block -DoWhileStatement ← 'do' Block 'while' Expression ';' -ForStatement ← 'for' VariableDefinition? ';' Expression ';' AssignmentStatementBody? Block - FlowControlStatement ← 'continue' ';' / 'break' ';' / 'return' Expression? ';' -- cgit v1.2.3