summaryrefslogtreecommitdiff
path: root/test/files/cli/test1/Main.java
blob: 8850b875174a98fce871c56f3add41f8d9d00d8d (plain) (blame)
1
2
3
4
5
6
7
8
// @info no dependency
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 (" + args.length + ")");
  }
}