Generator (computer programming): Difference between revisions

Content deleted Content added
m PHP: type hint
Tag: Reverted
m Undid revision 1160900223 by Frap (talk): this change isn't consistent with the PHP RFC for generators
Line 295:
Infinite Fibonacci sequence:
<syntaxhighlight lang="php">
function fibonacci(): generator
{
$last = 0;