Files
kotlin-fork/js/js.translator/testFiles/expression/dollarParameter/cases/dollarParameter.kt
T

9 lines
152 B
Kotlin

package foo
fun MyController(`$scope`: String): String {
return "Hello " + `$scope` + "!"
}
fun box(): String {
return MyController("world")
}