this post was submitted on 05 Apr 2024
297 points (95.4% liked)

Programmer Humor

18470 readers
2114 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] python@programming.dev 1 points 3 months ago

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"; } }