Updated test data and stdlib sources.

This commit is contained in:
Evgeny Gerashchenko
2013-02-12 02:19:55 +04:00
parent 105d2d72de
commit b9e5704057
43 changed files with 96 additions and 78 deletions
@@ -2,12 +2,13 @@ package foo
var c = 2
fun loop(var times : Int) {
while(times > 0) {
fun loop(times : Int) {
var left = times
while(left > 0) {
val u : (value : Int) -> Unit = {
c++
}
u(times--)
u(left--)
}
}