initial commit

This commit is contained in:
2025-11-13 18:31:10 +08:00
commit da58415989
137 changed files with 10167 additions and 0 deletions

17
math/build.gradle Normal file
View File

@@ -0,0 +1,17 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
alias(libs.plugins.kotlin.jvm)
}
java {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_1_8
}
}
dependencies {
testImplementation libs.kotlin.test
}