Add README and LICENSE files

This commit is contained in:
2024-12-18 19:15:56 -06:00
committed by James Eversole
parent 2a650dac56
commit b3dd945b82
3 changed files with 27 additions and 2 deletions

View File

@ -114,10 +114,10 @@ parseStrLiteral = do
LStringLiteral value <- satisfy isStringLiteral
return (SStr value)
isKeywordT (LKeywordT) = True
isKeywordT (LKeywordT) = True
isKeywordT _ = False
isIdentifier (LIdentifier _) = True
isIdentifier (LIdentifier _) = True
isIdentifier _ = False
isIntegerLiteral (LIntegerLiteral _) = True