Initial commit
This commit is contained in:
commit
f837b26903
47 changed files with 1365 additions and 0 deletions
13
examples/src/main/kotlin/com/example/Example.kt
Normal file
13
examples/src/main/kotlin/com/example/Example.kt
Normal 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)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue