parent
88d382b76b
commit
a5da714d61
23
tests/loop_while_test.aer
Normal file
23
tests/loop_while_test.aer
Normal 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");
|
||||
}
|
||||
|
||||
}
|
6
tests/loop_while_test.exp
Normal file
6
tests/loop_while_test.exp
Normal file
@ -0,0 +1,6 @@
|
||||
9
|
||||
8
|
||||
7
|
||||
5
|
||||
4
|
||||
2
|
Loading…
Reference in New Issue
Block a user