This commit is contained in:
StevenBuzzi
2026-04-10 15:40:51 +09:00
commit 541929d892
16 changed files with 807 additions and 0 deletions

21
build.gradle.kts Normal file
View File

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