home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / OS2 / NETREXX.ARJ / NETREXX.ZIP / NetRexx / hello.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-03  |  447 b   |  14 lines

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