We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1497ed commit bfcbfeeCopy full SHA for bfcbfee
m100-crunch.lex
@@ -45,6 +45,9 @@ LINENUM [0-9]+
45
/* Replace 100 ' with 100 REM as it tokenizes to 1 instead of 2 bytes */
46
^[ \t]*[0-9]+[ \t:]*['][^\r\n]* fprintf(yyout, "%d REM", atoi(yytext));
47
48
+ /* Replace :ELSE with ELSE */
49
+[ \t:]*:[ \t:]*ELSE fprintf(yyout, "ELSE");
50
+
51
/* Replace 100 :REM with 100 REM */
52
^[ \t]*[0-9]+[ \t:]*REM[^\r\n]* fprintf(yyout, "%d REM", atoi(yytext));
53
0 commit comments