Aer/tests/static_var.aer

25 lines
563 B
Plaintext
Raw Normal View History

class Program {
private string cycle(char $a, char $b, int $i = 0) {
static bool[] $switches;
2019-07-01 20:07:06 +02:00
if(array_key_exists($i, $switches))
$switches[$i] = !$switches[$i];
else
!($switches[$i] = true);
return ($switches[$i]) ? $a : $b;
}
public void main() {
for(int $i = 1; $i < 3; $i++) {
print($i + $this->cycle('a', 'b') + PHP_EOL);
for(int $j = 1; $j < 5; $j++) {
print(' ' + $j + $this->cycle('a', 'b', 1) + PHP_EOL);
for(int $k = 1; $k < 3; $k++) {
print(' ' + $k + $this->cycle('c', 'd', 2) + PHP_EOL);
}
}
}
}
}