LOOP SIMULATION BUG

A never-ending cycle of recursion

A picture of an infinite loop

Simulating an infinite loop, because who needs a solution?

Try Phase 3D

Go back to Phase 2D (because who needs progress?)

            
                // Simulated infinite recursion
                for (int i=0; i < 10; i++) {
                    // do absolutely nothing
                }