blob: 0fda877a98b4aeeae3a156eac15814265b8beb33 [file]
<?php
function generatorV() {
for ($i = 1; $i <= 3; $i++) {
yield $i;
}
}
?>