JS backend: testFiles -> testData
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun main(args: Array<String>) {
|
||||
println(max(parseInt(args[0]), parseInt(args[1])))
|
||||
}
|
||||
|
||||
fun max(a: Int, b: Int) = if (a > b) a else b
|
||||
Reference in New Issue
Block a user