Files
Ilya Chernikov 5ab822be36 Import scope of the imported script
#KT-34178
2020-10-02 18:53:31 +02:00

11 lines
153 B
Kotlin
Vendored

var sharedVar = 2
class SharedClass(val msg: String)
object SharedObject {
val greeting = "Hi"
}
println("${SharedObject.greeting} from common")