org.aspectj/tests/new/Hello.java

7 lines
161 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public class Hello {
public static void main(String[] args) {
System.out.println("hello world");
if (args.length > 1) throw new Error("e");
}
}