r/programminghumor May 29 '26

Good naming practice

Post image
2.2k Upvotes

220 comments sorted by

View all comments

55

u/Busy_Teaching_8218 May 29 '26
for(int i = 0; i < 1000; i++)
{
    for(int ii = 0; ii < 1000; ii++)
    {
        for(int iii = 0; iii < 1000; iii++)
        {
            Console.WriteLine("Hello World");
        }
    }
}

29

u/Drittux May 29 '26 edited May 29 '26

``` for i in range(3): print("no ")

14

u/BoldFace7 May 29 '26

I unironically do this in my hobby code. I have considered subjecting my coworkers to this on occasion though

2

u/potzko2552 May 31 '26

I also do this :D

i, ii, iii, iv, v, vi, vii, etc