From 6ba1871c3825e17d33b96ffd3051239dfe18d61a Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 9 Apr 2025 19:26:51 -0400 Subject: Saving first part of large rewrite --- src/lex.lisp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lex.lisp') 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) -- cgit v1.2.3