Allow indented statements

Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 298513eb7f
commit a381e148f0
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