9 lines
No EOL
166 B
Kotlin
9 lines
No EOL
166 B
Kotlin
package net.codinux.banking.ui
|
|
|
|
class Greeting {
|
|
private val platform = getPlatform()
|
|
|
|
fun greet(): String {
|
|
return "Hello, ${platform.name}!"
|
|
}
|
|
} |