Add README and LICENSE files

This commit is contained in:
James Eversole
2024-12-18 19:15:56 -06:00
parent 9f9aca4040
commit ad0df667aa
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