home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 May / PCO_5_97.ISO / FilesBBS / OS2 / NETREXX.ARJ / NETREXX.ZIP / NetRexx / hello.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-02-17  |  512 b   |  15 lines

  1. import netrexx.lang.Rexx;
  2. import netrexx.lang.RexxIO;
  3.  
  4. public class hello {
  5.    // $FF: renamed from: $0 java.lang.String
  6.    private static final String field_0 = "hello.nrx";
  7.  
  8.    public static void main(String[] var0) {
  9.       RexxIO.Say(new Rexx("Hello World!"));
  10.    }
  11.  
  12.    private hello() {
  13.    }
  14. }
  15.