Allow indented statements

Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 8b62a51a64
commit 2a7a4ca8b2
No known key found for this signature in database
GPG Key ID: E62222846283925
  1. 5
      src/grammars/mblf.pest

@ -11,7 +11,10 @@ loopBlock = { loopBlockStart
~ loopBlockEnd
}
statement = _{ instruction | loopBlock }
statement = _{ spacing*
~ (instruction | loopBlock)
}
statements = _{ statement* }
newline = _{ "\n" | "\r\n" }

Loading…
Cancel
Save