Initial Commit

main
Oliver Kennedy 2023-11-01 11:07:19 -04:00
commit dee842d66f
Signed by: okennedy
GPG Key ID: 3E5F9B3ABD3FDB60
3 changed files with 24 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.bloop
.metals
/out

12
build.sc Normal file
View File

@ -0,0 +1,12 @@
import mill._
import scalalib._
object hackdb extends RootModule with ScalaModule
{
def scalaVersion = "2.13.11"
def finalMainClass = "net.okennedy.hackdb.HackDB"
def ivyDeps = Agg(
ivy"com.lihaoyi::fastparse:3.0.2"
)
}

View File

@ -0,0 +1,9 @@
package net.okennedy.hackdb
object HackDB
{
def main(args: Array[String]): Unit =
{
println(Parser("SELECT"))
}
}