chore: Project structure

This commit is contained in:
Tibo De Peuter 2025-03-27 10:46:40 +01:00
parent 948de3de02
commit 4054ed5fce
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
9 changed files with 511 additions and 2 deletions

9
src/Main.kt Normal file
View 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!"
}