Skip to content

Instantly share code, notes, and snippets.

@dmikurube
Last active February 11, 2023 06:28
Show Gist options
  • Save dmikurube/517fcef4c0e380d85cb14c199a4efa2f to your computer and use it in GitHub Desktop.
Save dmikurube/517fcef4c0e380d85cb14c199a4efa2f to your computer and use it in GitHub Desktop.
plugins {
id "org.jetbrains.kotlin.jvm" version "1.7.22"
id "application"
}
sourceSets {
main {
kotlin {
srcDir "."
}
}
}
repositories {
mavenCentral()
}
dependencies {
}
application {
mainClass = "MainKt"
}
fun main() {
println("Hello!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment