This commit is contained in:
Christian
2024-12-01 16:53:10 +01:00
commit e6f9daa020
9 changed files with 1117 additions and 0 deletions

10
build.sbt Normal file
View File

@@ -0,0 +1,10 @@
val scala3Version = "3.5.2"
lazy val root = project
.in(file("."))
.settings(
name := "aoc-2024",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
libraryDependencies += "org.scalameta" %% "munit" % "1.0.0" % Test
)