aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
blob: 476abc7ee7eb7a461b0088c5049811aa0000ea7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package example;

public class HelloWorld {

  public static void say(String msg) {
    System.err.println(msg);
  }

  public static void main(String []argv) {
    say("hello world");
  }
}