Example Applet
import java.applet.Applet;
import java.awt.Graphics;
public class MyFirstApplet extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
To compile on a Unix system, type:
Then to run it, embed a reference to it in a web page...