Initial commit

This commit is contained in:
DavidOnTop 2024-09-24 21:08:15 +02:00
commit 5d2dd7db43
No known key found for this signature in database
GPG key ID: 5D05538A45D5149F
6 changed files with 126 additions and 0 deletions

14
build.sbt Normal file
View file

@ -0,0 +1,14 @@
ThisBuild / version := "0.1.0"
ThisBuild / organization := "top.davidon"
ThisBuild / licenses ++= Seq(
"GLWTS" -> url("https://github.com/me-shaon/GLWTPL/blob/master/NSFW_LICENSE"),
)
ThisBuild / scalaVersion := "3.5.1"
lazy val root = (project in file("."))
.settings(
name := "monteCarlo",
assembly / mainClass := Some("top.davidon.montecarlo.main.Main"),
)