When I was first working with ML for class, I wrote a quicksort method that just would not terminate, ever! I would enter my call to test quicksort in the interpreter, press enter, and then wait and wait and wait until I got fed up and killed it. Eventually, I stepped through my program by hand, step-by-step, through all the recursions, and proved to myself that it MUST be terminating. It was only then, after nearly an hour of debugging, that I realized the interpreter was simply waiting for me to enter a semi-colon to tell it I was finished with my input and to interpret my command. The quicksort method worked perfectly.
Another fun one I do ALL the time:
for (int i = 0; i < height; ++i)
{
for (int j = 0; j < width; ++i)
{
}
}