Test while loop.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-16 19:31:24 +02:00
parent 88d382b76b
commit a5da714d61
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 29 additions and 0 deletions

23
tests/loop_while_test.aer Normal file
View File

@ -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");
}
}

View File

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