14 lines
353 B
Kotlin
Executable File
Vendored
14 lines
353 B
Kotlin
Executable File
Vendored
#!/usr/bin/env kotlinc -cp dist/kotlinc/lib/kotlin-main-kts.jar -script
|
|
|
|
@file:Repository("https://jcenter.bintray.com")
|
|
@file:DependsOn("org.jetbrains.kotlinx:kotlinx-html-jvm:0.6.11")
|
|
|
|
import kotlinx.html.*; import kotlinx.html.stream.*; import kotlinx.html.attributes.*
|
|
|
|
print(createHTML().html {
|
|
body {
|
|
h1 { +"Hello, World!" }
|
|
}
|
|
})
|
|
|