mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
14 lines
406 B
Kotlin
Vendored
14 lines
406 B
Kotlin
Vendored
|
|
import kotlin.script.experimental.annotations.*
|
|
import kotlin.script.experimental.api.*
|
|
import kotlin.script.experimental.util.*
|
|
|
|
object TestScriptWithSimpleEnvVarsDefinition : ScriptDefinition(
|
|
{
|
|
providedProperties("stringVar1" to String::class)
|
|
})
|
|
|
|
@KotlinScript(extension = "2.kts", definition = TestScriptWithSimpleEnvVarsDefinition::class)
|
|
abstract class TestScriptWithSimpleEnvVars
|
|
|