Files
aoc-2024/app/src/main/kotlin/org/example/App.kt
Andrew Glaze 79e8198c4b day1
2024-12-01 01:53:13 -05:00

16 lines
231 B
Kotlin

/*
* 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)
}