initial commit

This commit is contained in:
mae
2026-03-17 03:28:37 -05:00
commit 8972a90b6c
34 changed files with 1068 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
@file:OptIn(ExperimentalUuidApi::class)
import kotlinx.browser.window
import online.maestoso.cofront.Identifier
import kotlin.uuid.ExperimentalUuidApi
import kotlin.uuid.Uuid
fun main() {
window.alert("kotlin js test")
val i = Identifier(Uuid.generateV7(), "localhost")
}