11 lines
200 B
Kotlin
11 lines
200 B
Kotlin
package moe.lava.neon.ui
|
|
|
|
import moe.lava.neon.core.getPlatform
|
|
|
|
class Greeting {
|
|
private val platform = getPlatform()
|
|
|
|
fun greet(): String {
|
|
return "Hello, ${platform.name}!"
|
|
}
|
|
}
|