//One last superEasyApplet from squash

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

//the name of the public class is the name of the program
public class WelcomeAgainMan extends Applet
{
	public void init()
	{
		this.add(new Label("WelcomeAgainMan!!!"));
	} 
} 

//granted this one might be a little more confusing
//but i guarantee you'll find this simple in a week or so! :)
