Initial commit

This commit is contained in:
2026-04-23 22:50:48 +02:00
commit bf8b46bff2
63 changed files with 5137 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
package dev.ulfrx.recipe
const val SERVER_PORT = 8080

View File

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

View File

@@ -0,0 +1,7 @@
package dev.ulfrx.recipe
interface Platform {
val name: String
}
expect fun getPlatform(): Platform