home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / netrexx.zip / NetRexx / HelloApplet.nrx < prev    next >
Text File  |  1996-04-20  |  176b  |  9 lines

  1. /* A terribly simple Applet */
  2.  
  3. class HelloApplet extends Applet
  4.   method init
  5.     resize(200, 40)
  6.  
  7.   method paint(g=Graphics)
  8.     g.drawString("Hello world!", 50, 30)
  9.