<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	(c) 1998 Burton Rosenberg. All rights reserved.
*/

public class ObjectThreeTest
{

	public static void main(String [] args)
	{
		ObjectThree o3 = new ObjectThree() ;
		while ( o3.hasMore() ) 
		{
			System.out.print(o3.getNext()) ;
		}
	}
}
</pre></body></html>