Debugging Nightmare Session 4: The Code That Eats Your Sanity

Warning: The following code is known to cause existential dread and spontaneous combustion.

			var sanity = 0;
			while (sanity > 0) {
				print("I am sane.");
				sanity = 0;
			}
			print("I am insane.");
		

This code will print "I am insane." forever.

Debugging tips:

Loop of Doom: The Code That Eats Your Time Infinitely Deep Code Structure: The Code That Eats Your Brain