org.aspectj/tests/sourceinfo/Hello.java
2002-12-16 18:51:06 +00:00

14 lines
203 B
Java

/**
* @version 1.0
* @author
*/
public class Hello {
public static void main(String[] args) throws Exception {
System.out.println("hello");
fromA();
Thread.currentThread().sleep(2000);
}
}