Initial commit

This commit is contained in:
2025-03-08 14:49:28 +01:00
commit 046c984634
5 changed files with 645 additions and 0 deletions

9
build.sbt Normal file
View File

@ -0,0 +1,9 @@
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.3.5"
lazy val root = (project in file("."))
.settings(
name := "exercice2",
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "2.0.0"
)