Last active
February 11, 2023 06:28
-
-
Save dmikurube/517fcef4c0e380d85cb14c199a4efa2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id "org.jetbrains.kotlin.jvm" version "1.7.22" | |
id "application" | |
} | |
sourceSets { | |
main { | |
kotlin { | |
srcDir "." | |
} | |
} | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
} | |
application { | |
mainClass = "MainKt" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main() { | |
println("Hello!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment