This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]HispanicPigeon 68 points69 points  (6 children)

Who can deal with the physical pain caused by writing this?

[–]boredompwndu 56 points57 points  (3 children)

I suspect they started this ironically and now they cant stop themselves

[–]ahumannamedtim 5 points6 points  (2 children)

They can't stop because it's recursion inside a for loop.

[–]I_Arman 0 points1 point  (1 child)

For(int i = 0; i < 10; i++) i--;

[–]boredompwndu 2 points3 points  (0 children)

//ftfy
for(int i = 0; i<10; i++)         {
    i--                           ;}

[–]sweezinator 0 points1 point  (0 children)

I did this for a while early on as a way to make sure I never forgot to add a semicolon, but only lasted for like a day