// Justin C. Miller
// University of Wisconsin Oshkosh
// Made for: http://www.geocities.com/neonprimetime.geo/index.html
// Date: 2001
// Borland Builder 4.0
// Example of an infinite loops
#include <iostream.h>

int main()
{
	while(true)
	{
		cout << "This will never stop!" << endl ;
	}

	return 0 ;
}