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.

Code2.java 371B

123456789101112131415
  1. public class Code2 {
  2. public static void main(String[] argv) {
  3. }
  4. }
  5. aspect X {
  6. before(): execution(* Code2.main(..)) {
  7. // Caveat: Putting the closing '"""' on a separate line adds a line break and 'println' (not 'print'!) adds another.
  8. System.out.println("""
  9. this is a text
  10. block in advice
  11. """);
  12. }
  13. }