import java.applet.*;

public class hello_java extends Applet
{
  public void init()
  {
	System.out.println("here's a message from the hello_java applet");
  }
}

