diff options
author | bd <bdunahu@operationnull.com> | 2025-04-09 19:26:51 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-09 19:26:51 -0400 |
commit | 6ba1871c3825e17d33b96ffd3051239dfe18d61a (patch) | |
tree | 5cfca6ae1a6885dfde5d3ff003467d6b3c40fc44 /src/lex.lisp | |
parent | 4df084d3e2785412eb086fb02ac10be5def695d1 (diff) |
Saving first part of large rewrite
Diffstat (limited to 'src/lex.lisp')
-rw-r--r-- | src/lex.lisp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lex.lisp b/src/lex.lisp index 5b1457d..c86d17c 100644 --- a/src/lex.lisp +++ b/src/lex.lisp @@ -42,6 +42,8 @@ Comments start with a semi-colon ';' and all tokens after are ignored." (progn (read-line *standard-input* nil) 'nl)) + ((char= chr #\.) 'period) + ((char= chr #\() 'left-paren) ((char= chr #\)) 'right-paren) |