JS: move expressions test to box tests
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package foo
|
||||
|
||||
fun box(): String {
|
||||
val number = 3
|
||||
val s1 = "${number - 1}${number}"
|
||||
val s2 = "${5}${4}"
|
||||
assertEquals("2354", "${s1}${s2}")
|
||||
return "OK"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user