pull/4716/head
Conduitry 6 years ago
parent 373f0ef389
commit f970b61c5a

@ -1,14 +1,14 @@
<script> <script>
let it = gen(); const it = gen();
it.next(); it.next();
setTimeout(() => { setTimeout(() => {
it.next(); it.next();
}, 20) }, 20)
function* gen() { function* gen() {
while (true) { while (true) {
yield; yield;
} }
} }
</script> </script>
Loading…
Cancel
Save