Initial commit

(Multiplatform project template)
This commit is contained in:
Christian Basler
2024-04-29 17:14:43 +02:00
commit 1b9c8633c9
38 changed files with 949 additions and 0 deletions

View File

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