//WelcomeAgain 
//Another SuperEasy applet from squash

//importing neccessary packages
import java.awt.*;
import java.applet.*;

//public class is the name of the program
public class WelcomeAgain extends Applet
{
	TextField welcAgain=new TextField("Welcome Again!");

	public void init()
	{
		add(welcAgain);
	}
}

//Are you starting to get the hang of it?
