If you don't feel like freezing up your computer, it's pretty old so you've probably seen it before anyway. But if not then it's a tic-tac-toe program where the whole game is run through printing a manually-made board for every possible board. Oddly fun to look at.
Has anyone other than myself ever unironically written code this poorly before? I remember my first scrolling text C program from all the way back in 2011, I printed out every character and then waited a frame over and over. My poor 10 (11?) year old self didn't know what a char array was. It looked something like this, except it used some windows-exclusive wait function that I can't remember.
Code: Select all
//this for an entire paragraph
printf("T");
wait(1);
printf("H");
wait(1);
printf("E");
wait(1);