Arquivos
hhvm/hphp/test/quick/fib_gen.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

18 linhas
263 B
PHP

<?php
// Lazy infinite list!
function fibonacci($first, $second) {
$a = $first; $b = $second;
while (true) {
yield $b;
$temp = $b;
$b = $a + $b;
$a = $temp;
}
}
foreach (fibonacci(0, 1) as $k) {
if ($k > 1000) break;
echo $k . "\n";
}