13 lines
135 B
Kotlin
Vendored
13 lines
135 B
Kotlin
Vendored
package test
|
|
|
|
import test.MyEnum.ONE
|
|
|
|
fun main(args: Array<String>) {
|
|
println(ONE)
|
|
}
|
|
|
|
public enum class MyEnum {
|
|
ONE
|
|
TWO
|
|
}
|