🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
168 B
Kotlin
7 lines
168 B
Kotlin
package com.example.mycrib
|
|
|
|
class WasmPlatform: Platform {
|
|
override val name: String = "Web with Kotlin/Wasm"
|
|
}
|
|
|
|
actual fun getPlatform(): Platform = WasmPlatform() |