Multi-module arrangement and the start of AST generation.

This commit is contained in:
2023-09-03 23:15:21 -07:00
parent bf3967544a
commit d46ea1e307
94 changed files with 377 additions and 138 deletions

View File

@ -1 +1,17 @@
rootProject.name = "pork"
include(
":ast",
":core"
)
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("clikt", "4.2.0")
library("clikt", "com.github.ajalt.clikt", "clikt")
.versionRef("clikt")
}
}
}