13 lines
207 B
Kotlin
13 lines
207 B
Kotlin
// Kotlin JS version 1.1.4-3
|
|
|
|
class C {
|
|
fun foo() {
|
|
println("foo called")
|
|
}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val c = C()
|
|
val f = "c.foo"
|
|
js(f)() // invokes c.foo dynamically
|
|
}
|