TESTS: "for" and INSTANCEOF, NOT_INSTANCEOF, isInstanceOf on interface are added

This commit is contained in:
Konstantin Anisimov
2016-11-17 12:19:16 +03:00
committed by vvlevchenko
parent 3a49e69046
commit c1bb762417
4 changed files with 79 additions and 0 deletions
@@ -0,0 +1,7 @@
fun cycle_for(arr: Array<Int>) : Int {
var sum = 0
for (i in arr) {
sum += i
}
return sum
}