Macro.hx 119 B

12345678
  1. class Macro {
  2. static var x = 1;
  3. macro static public function test() {
  4. Sys.println(x++);
  5. return macro null;
  6. }
  7. }