Test while loop.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-04-16 19:31:24 +02:00
vanhempi 88d382b76b
commit a5da714d61
Allekirjoittanut: belliash
GPG avaimen ID: 4E829243E0CFE6B4
2 muutettua tiedostoa jossa 29 lisäystä ja 0 poistoa

23
tests/loop_while_test.aer Normal file
Näytä tiedosto

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

Näytä tiedosto

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