🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
162 B
Kotlin
9 lines
162 B
Kotlin
package com.example.mycrib
|
|
|
|
class Greeting {
|
|
private val platform = getPlatform()
|
|
|
|
fun greet(): String {
|
|
return "Hello, ${platform.name}!"
|
|
}
|
|
} |