//File:  Display.java
import CSLib.*;
public class Display
{
	public static void main (String [] args)
	{
		OutputBox out = new OutputBox("Testing");
		
		out.println ("This is a test.");
		out.println ("");
		out.println ("The double space is generated by the extra println statement.");
	}
}
