Help for this page

Select Code to Download


  1. or download this
    open MYCLASS, "$filename";
    print MYCLASS;   #print to MYCLASS or call MYCLASS->print?
    
  2. or download this
    sub new(*) {...}
    open MYCLASS, $filename;
    new MYCLASS;   #main::new(*MYCLASS) or MYCLASS->new?
    
  3. or download this
    sub new(*) {...}
    open CGI, $filename;
    new CGI;   #main::new(*CGI) or CGI->new?