init commit

This commit is contained in:
Moritz Gmeiner 2024-09-07 01:51:08 +02:00
commit 9a17038479
11 changed files with 71 additions and 0 deletions

BIN
.vscode/alive/fasl/tmp.fasl vendored Normal file

Binary file not shown.

11
.vscode/alive/fasl/tmp.lisp vendored Normal file
View 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))