mirror of
https://github.com/MorizzG/cl-lox.git
synced 2025-12-06 04:22:42 +00:00
init commit
This commit is contained in:
commit
9a17038479
11 changed files with 71 additions and 0 deletions
BIN
.vscode/alive/fasl/tmp.fasl
vendored
Normal file
BIN
.vscode/alive/fasl/tmp.fasl
vendored
Normal file
Binary file not shown.
11
.vscode/alive/fasl/tmp.lisp
vendored
Normal file
11
.vscode/alive/fasl/tmp.lisp
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
(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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue