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