summaryrefslogtreecommitdiff
path: root/test/files/cli/test1/Main.java
blob: 11d50255dd8856e493cec07e011c80da7fbcc1db (plain) (blame)
1
2
3
4
5
6
7
package test1;
public class Main {
  public static void main(String args[]) {
    String arg = (args.length > 0) ? args[0] : "?";
    System.out.println("1: test " + arg + " passed");
  }
}