Hello World Applet from Sun Tutorial
Hello World Applet from Sun Tutorial
This prints in applet window, the classic Hello World string!
import java.awt.Graphics
public class HelloWorld extends java.applet.Applet
{
public void init() {
}
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}