Help for this page

Select Code to Download


  1. or download this
    use B::MyMacro;
    sub foo :macro {
      return "bar()"
    }
    
  2. or download this
     
    print;
    foo();
    print;
    
  3. or download this
    print;
    do { bar() };
    print;