This commit is contained in:
2022-10-18 01:05:43 +08:00
commit 72b3bd2033
9 changed files with 372 additions and 0 deletions
+7
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()}")
}