home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 February / PCO_0298.ISO / filesbbs / os2 / netrexx.arj / NETREXX.ZIP / NetRexx / hello.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-10-21  |  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.