Initial commit

This commit is contained in:
2026-02-24 16:09:20 -06:00
commit ba73af0f89
15 changed files with 460 additions and 0 deletions

21
build.gradle.kts Normal file
View File

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