Files
honeyDueKMP/composeApp/src/commonMain/kotlin/com/example/mycrib/Greeting.kt
Trey t 78c62cfc52 Initial commit: Kotlin Multiplatform project setup
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 09:15:49 -06:00

9 lines
162 B
Kotlin

package com.example.mycrib
class Greeting {
private val platform = getPlatform()
fun greet(): String {
return "Hello, ${platform.name}!"
}
}