//******************************************************************** // helloWorld2.java Author: Sophie Quigley // // Whenever you learn a new language, you must say hello to the world // //******************************************************************** import java.applet.Applet; import java.awt.Graphics; public class helloWorld2 extends Applet { public void paint(Graphics page) { page.drawString("Hello world!", 50, 25); } }