Fix testData

This commit is contained in:
Ilya Gorbunov
2016-01-31 18:23:27 +03:00
parent a192915c82
commit 801a26a544
10 changed files with 15 additions and 18 deletions
@@ -2,6 +2,8 @@ public fun <T> Iterable<T>.myforEach(operation: (T) -> Unit) : Unit {
for (element in this) operation(element)
}
public fun println(v: Any?) {}
fun foo1() {
(1..5).myforEach {
println(it)