about summary refs log tree commit diff stats
path: root/clex.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'clex.lisp')
-rw-r--r--clex.lisp7
1 files changed, 7 insertions, 0 deletions
diff --git a/clex.lisp b/clex.lisp
index 52eb822..16ce0ff 100644
--- a/clex.lisp
+++ b/clex.lisp
@@ -1,3 +1,9 @@
+(defpackage #:clex
+  (:use #:common-lisp)
+  (:export
+   ))
+(in-package #:clex)
+
 (defclass <string-lexer> () ((string :initarg :s :accessor string)
                              (current :initform 0 :accessor current)
                              (size :accessor size)))
@@ -39,3 +45,4 @@
                           (and (char>= x #\0) (char<= x #\9))
                           (char= x #\_)))))
     (extract is-alpha-num)))
+(provide "clex")