this post was submitted on 30 Sep 2023
943 points (96.4% liked)

Programmer Humor

32048 readers
1531 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 12 points 11 months ago (1 children)

When productivity is measured in lines of code:

do {
  if (!edge) {
    run();
  }
} while {
  (!edge);
  }
[โ€“] [email protected] 4 points 11 months ago

You can probably do this:

do 
{
  if (!edge) 
  {
    run();
  }
} 
while 
{
  (!edge);
  }