Clean a few things up

This commit is contained in:
Scott Richmond 2023-11-27 01:17:07 -05:00
parent 6f67fe0b40
commit 41fcdaa2e5
2 changed files with 6 additions and 6 deletions

View File

@ -192,7 +192,7 @@ If {
If_Let {
skw<"if"> skw<"let">
Pattern "=" simple
Pattern "=" simple newline*
skw<"then"> expression newline*
skw<"else"> expression
}
@ -287,6 +287,6 @@ Nil { skw<"nil"> }
float { ("0" | int ) "." $[0-9]+}
Number { "-"? (int | float) }
separator { $[,\n] }
terminator { $[;\n] }
terminator { $[;\n] | @eof }
newline { "\n" }
}

File diff suppressed because one or more lines are too long