diff options
author | bd <bdunahu@operationnull.com> | 2025-03-20 13:51:28 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-20 13:51:28 -0400 |
commit | 6e338215192c26dfb16236398ca8e3762a8d4d0e (patch) | |
tree | 823d7102f43ea5a4b377d5c2cb04a5ec02fb20b7 /src/package.lisp | |
parent | 19d13c8339ee990fba358417a54aa6f1c94c7bca (diff) |
Add logic to open file, lex single character symbols, tests
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/package.lisp b/src/package.lisp index 9d21293..44399cb 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -5,3 +5,9 @@ (defpackage #:util (:use #:cl) (:export #:asm-extension?)) + +(defpackage #:lex + (:use #:cl) + (:export #:file->tokens + ;; exported for testing only + #:read-token)) |