<?php function a(): Generator { for ($i = 0; $i <= 10; ++$i) { yield $i; } } function b(): Generator { echo 'php from b()'; return a(); } function c(): Generator { echo 'php from c()'; yield from a(); } b(); c();
You have javascript disabled. You will not be able to edit any code.