chore: initial commit

This commit is contained in:
Xavier Morel
2025-04-28 14:48:58 +02:00
committed by installer
commit 6c2240960f
7 changed files with 70 additions and 0 deletions

12
build.sbt Normal file
View File

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