If you are using Gradle and you want to run a Kotlin script you have to add the following to your build.gradle file
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation 'org.jetbrains.kotlin:kotlin-script-runtime:1.4.32'
}






