//A first program in JAVA
//Super easy by squash

//Importing neccessary packages
import java.applet.Applet;
import java.awt.Graphics;

//The name of the public class is the name of the program
public class Welcome extends Applet 
{
 public void paint (Graphics g)	
 {
  g.drawString("welcome to JAVA, BABY!", 25, 25);
 }
}

//if you are confused by this don't worry
