Initial commit

This commit is contained in:
Merlijn 2025-08-28 16:17:28 +02:00
commit fb5250d501
Signed by: ToxicMushroom
SSH key fingerprint: SHA256:fiv+rEfOFbxc5OPNgLT1nNCL/JndxzhkKbIJLp1JcCc
15 changed files with 557 additions and 0 deletions

21
build.gradle.kts Normal file
View file

@ -0,0 +1,21 @@
plugins {
kotlin("jvm") version "2.2.0"
}
group = "me.melijn"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}