Stonks/app/src/main/kotlin/xyz/etztech/stonks/App.kt

16 lines
246 B
Kotlin

/*
* This Kotlin source file was generated by the Gradle 'init' task.
*/
package xyz.etztech.stonks
class App {
val greeting: String
get() {
return "Hello World!"
}
}
fun main() {
println(App().greeting)
}