Generator (computer programming): Difference between revisions

Content deleted Content added
Java: Improving the readability of the code
m PHP: type hint
Tag: Reverted
Line 295:
Infinite Fibonacci sequence:
<syntaxhighlight lang="php">
function fibonacci(): generator
{
$last = 0;