8 lines
174 B
Text
8 lines
174 B
Text
public aspect HelloWorld
|
|
{
|
|
pointcut mainCall() : call(public static void *.main(String[] args));
|
|
before() : mainCall()
|
|
{
|
|
System.out.println("Hello World");
|
|
}
|
|
}
|