<?php function generator($n) { if ($n <= 0) { yield 0; } else { yield $n; foreach(generator($n - 1) as $l) { yield $l; } } } foreach(generator(10) as $l) { print $l; }
You have javascript disabled. You will not be able to edit any code.