diff options
author | bd <bdunahu@operationnull.com> | 2025-04-03 01:07:13 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-03 01:07:13 -0400 |
commit | 4d8ffb6a29285f12d9ebd788727d633550510d7f (patch) | |
tree | ce6e4a79d7c9e4fb093517ebdceb2fecd64a6a9d /src/package.lisp | |
parent | ca8d176ac7745986c4e3a92ed7cea277e344262d (diff) |
Add lexing for immediates, keywords, and associated tests
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/package.lisp b/src/package.lisp index 44399cb..670ed02 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -10,4 +10,5 @@ (:use #:cl) (:export #:file->tokens ;; exported for testing only - #:read-token)) + #:read-token + #:invalid-immediate-or-keyword)) |