mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
184 B
Kotlin
Vendored
11 lines
184 B
Kotlin
Vendored
package example2
|
|
|
|
fun box() = Context.OsType.OK.toString()
|
|
|
|
object Context
|
|
{
|
|
public enum class OsType {
|
|
WIN2000, WINDOWS, MACOSX, LINUX, OTHER, OK;
|
|
}
|
|
}
|