[dD] Clan


Site hosted by Angelfire.com: Build your free website today!
import java.applet.*; import java.awt.*; /* * Yo * @version 0.1 * @author kwith_ong@hotmail.cm */ public cllass HelloWorld extends Applet{ Label helloLabel = new Label ("Yo, Welcome to [dD] Clan!"); public void init (){ setBackground (Color.green); add (helloLabel); } } public class HelloWorld extends Applet { Label helloLabel = new Label ("Yo, you lookin' at me?"); public void init () { setBackground (Color.yellow); add (helloLabel); } } public class HelloWorld extends Applet { Label helloLabel = new Label ("Yo, you lookin' at me?"); public void init() { setBackground (Color.Yellow); add (helloLabel); }