Test while loop.
Все проверки выполнены успешно
The build was successful.

Этот коммит содержится в:
2019-04-16 19:31:24 +02:00
родитель 88d382b76b
Коммит a5da714d61
2 изменённых файлов: 29 добавлений и 0 удалений

23
tests/loop_while_test.aer Обычный файл
Просмотреть файл

@@ -0,0 +1,23 @@
class Program {
private int test() {
static int $x = 9;
return $x--;
}
public void main() {
int $a;
int $b = 2;
while($a = $this->test()) {
int $b = $a;
if($b == 6) {
continue;
} else if($b == 3) {
break;
}
print("$b\n");
}
print("$b\n");
}
}

6
tests/loop_while_test.exp Обычный файл
Просмотреть файл

@@ -0,0 +1,6 @@
9
8
7
5
4
2