TheDan64 / limonite

[WIP] Compiler for the Limonite programming language.
Apache License 2.0
15 stars 3 forks source link

Parser doesn't like indented comments #52

Closed TheDan64 closed 7 years ago

TheDan64 commented 7 years ago
var i = 1
while i > 0,
        >> C
        i -= 1

returns filename:0:0 There were two indents in a row, 1 and 1 x2 but the code is valid and has valid codegen

TheDan64 commented 7 years ago

Fixed in #55