chore: initial commit

This commit is contained in:
2026-04-22 09:51:39 +07:00
commit a520504390
48 changed files with 1542 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package su.reya.coop
class Greeting {
private val platform = getPlatform()
fun greet(): String {
return "Hello, ${platform.name}!"
}
}

View File

@@ -0,0 +1,7 @@
package su.reya.coop
interface Platform {
val name: String
}
expect fun getPlatform(): Platform