package rpn.vc;

import java.applet.*;
import java.awt.*;

public class testApplet extends Applet {
	
	public void init() {
		setLayout(new BorderLayout(0, 0));
		setBackground(Color.cyan);
		int w = bounds().width; int h = bounds().height - 92;
		TextArea ta = new TextArea(20, 60);
		add("Center", ta);
		show();
	}
}	
