Automatic decoding of supported literals in REPL

Automatic decoding & display of string, number, and list types in REPL.
General updates to README, style, and comments.
This commit is contained in:
2024-12-27 15:40:50 -06:00
committed by James Eversole
parent 9c1c916fc9
commit 1224961c62
6 changed files with 86 additions and 23 deletions

View File

@ -45,7 +45,7 @@ stringLiteral = do
if null content
then fail "Empty string literals are not allowed"
else do
char '"'
char '"' --"
return (LStringLiteral content)
assign :: Lexer LToken