mirror of
https://github.com/MorizzG/cl-lox.git
synced 2025-12-06 04:22:42 +00:00
11 lines
182 B
Common Lisp
11 lines
182 B
Common Lisp
(in-package :cl-lox)
|
|
|
|
(defstruct code-pos
|
|
(line 1 :type integer)
|
|
(col 0 :type integer))
|
|
|
|
|
|
(defstruct token
|
|
(code-pos (make-code-pos) :type code-pos)
|
|
token-type
|
|
(data nil))
|