Problem 01

This commit is contained in:
2026-03-19 15:36:32 +01:00
commit 09af2a25e8
4 changed files with 48 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import Dependencies._
ThisBuild / scalaVersion := "3.8.2"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "ninetyNineScalaProblems",
libraryDependencies += munit % Test
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.
libraryDependencies += "org.scalameta" %% "munit" % "1.0.4" % Test