A code macro with a title and language defined:

A title goes here
public class AClass {

public static void main(String\[\] argv) {
     // do something here
     argv[0] = "asdf";
  }
}


An empty code macro:


public class AClass {

public static void main(String\[\] argv)

{      // do something here      argv\[0\] = "asdf";   }
}


A poor substitute (noformat macro):

A title goes here
public class AClass {

public static void main(String\[\] argv)

{      // do something here      argv\[0\] = "asdf";   }
}