Initial commit

This commit is contained in:
2023-08-28 14:00:07 +02:00
commit 35736a5fd2
23 changed files with 1035 additions and 0 deletions

27
build.gradle.kts Normal file
View File

@@ -0,0 +1,27 @@
plugins {
kotlin("jvm") version "1.9.0"
application
}
group = "com.thequux"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
application {
mainClass.set("MainKt")
}