home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / JAVA / NOTES / SOURCE / hello.jav < prev    next >
Text File  |  1996-12-20  |  313b  |  16 lines

  1.  
  2. // The basic Hello World Applet
  3.  
  4. import java.awt.*;
  5. import java.applet.*;
  6.  
  7. public class HelloWorldApplet extends Applet {
  8.  
  9.    // An applet that simply displays the string Hello World!
  10.    
  11.    public void paint(Graphics g) {
  12.       g.drawString("Hello World!", 10, 30);
  13.    }
  14.    
  15. }  // end of class HelloWorldApplet
  16.