summaryrefslogblamecommitdiff
path: root/test/files/cli/test1/Main.java
blob: 14e94cb4c5881bd01e73d2e4159a8324c4c0a5b8 (plain) (tree)
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");
  }
}