@[email protected] to Programmer [email protected]English • 8 months agoHilariouslemmy.mlimagemessage-square17fedilinkarrow-up1518arrow-down130cross-posted to: [email protected]
arrow-up1488arrow-down1imageHilariouslemmy.ml@[email protected] to Programmer [email protected]English • 8 months agomessage-square17fedilinkcross-posted to: [email protected]
minus-square@[email protected]linkfedilink4•8 months agolol that doesn’t work either tho. it yields the string once and then is done. you still need a loop inside
minus-squarePythonlinkfedilink1•8 months agoYou’re right! That’s actually a really cool point about Generator functions too, them having while(true) loops is very unproblematic :D I’m correcting myself to: function* sorry() { while(true){ yield "I'm sorry"; } }
lol that doesn’t work either tho. it yields the string once and then is done. you still need a loop inside
You’re right! That’s actually a really cool point about Generator functions too, them having while(true) loops is very unproblematic :D
I’m correcting myself to:
function* sorry() { while(true){ yield "I'm sorry"; } }