home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dev / java_dev.idb / usr / demos / java / JNI-invocation-example / Prog.java.z / Prog.java
Encoding:
Java Source  |  2000-05-20  |  255 b   |  10 lines

  1. public class Prog {
  2.   public static void main(String[] args) {
  3.     if (args.length != 1) {
  4.       System.out.println("Usage: java Prog <one argument>");
  5.     } else {
  6.       System.out.println("Hello, World! (argument is: \"" + args[0] + "\")");
  7.     }
  8.   }
  9. }
  10.