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