This commit is contained in:
Andrew Glaze
2024-12-01 01:53:13 -05:00
commit 79e8198c4b
14 changed files with 569 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
* This source file was generated by the Gradle 'init' task
*/
package org.example
class App {
val greeting: String
get() {
return "Hello World!"
}
}
fun main() {
println(App().greeting)
}