Added maven project

This commit is contained in:
2023-01-12 20:32:55 +01:00
parent 3726275302
commit 155094e476
9 changed files with 116 additions and 1 deletions

7
src/main/kotlin/Main.kt Normal file
View File

@@ -0,0 +1,7 @@
fun main(args: Array<String>) {
println("Hello World!")
// Try adding program arguments via Run/Debug configuration.
// Learn more about running applications: https://www.jetbrains.com/help/idea/running-applications.html.
println("Program arguments: ${args.joinToString()}")
}