Start work on parsing. (Really?!)

This commit is contained in:
Scott Richmond 2022-02-08 19:43:08 -05:00
parent 32390a4847
commit 3806683c99
2 changed files with 8 additions and 0 deletions

2
src/ludus/ast.clj Normal file
View File

@ -0,0 +1,2 @@
(ns ludus.ast)

6
src/ludus/parser.clj Normal file
View File

@ -0,0 +1,6 @@
(ns ludus.parser
(:require
[ludus.token :as token]
[ludus.scanner :as scanner]
[ludus.ast :as ast]))