chore: Project structure
This commit is contained in:
parent
948de3de02
commit
4054ed5fce
9 changed files with 511 additions and 2 deletions
9
src/Main.kt
Normal file
9
src/Main.kt
Normal file
|
@ -0,0 +1,9 @@
|
|||
fun main() {
|
||||
for (i in 1..10) {
|
||||
println("Hello, Kotlin Command Line Utility!")
|
||||
}
|
||||
}
|
||||
|
||||
fun testMe(): String {
|
||||
return "Hello, Kotlin Command Line Utility!"
|
||||
}
|
Reference in a new issue