Help for this page

Select Code to Download


  1. or download this
        use Attribute::Handlers;
    
    ...
        }
    
        somefunc();
    
  2. or download this
     
        use MyAttrMaker qw(myattr);
        sub somefunc :myattr {
            print "somefunc!\n";
        }
        somefunc();