// 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()
{
	for(int i = 0 ; i >= 0 ; i++)
		cout << "I'm an infinite Loop!" << endl ;

	return 0 ;
}
