@roon@lemmy.ml to Programmer Humor@programming.devEnglish • 1 year agoHilariouslemmy.mlimagemessage-square17arrow-up1534cross-posted to: programmerhumor@lemmy.ml
arrow-up1534imageHilariouslemmy.ml@roon@lemmy.ml to Programmer Humor@programming.devEnglish • 1 year agomessage-square17cross-posted to: programmerhumor@lemmy.ml
minus-square@brian@programming.devlinkfedilink5•1 year agolol that doesn’t work either tho. it yields the string once and then is done. you still need a loop inside
minus-squarePythonlinkfedilink1•1 year 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"; } }