You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Detour.20.java 132B

1234567
  1. public aspect Detour {
  2. void around() : execution(* Main.main(..)) {
  3. System.out.println("Main class successfully woven");
  4. }
  5. }