Initial commit

This commit is contained in:
Erik C. Thauvin 2023-11-03 21:31:09 -07:00
commit f837b26903
47 changed files with 1365 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package com.example
class Example {
val message: String
get() = "Hello World!"
companion object {
@JvmStatic
fun main(args: Array<String>) {
println(Example().message)
}
}
}