in reply to Hash Data Structure
My comments:
This leads me to believe that you probably don't understand perl's "protoypes", so you probably shouldn't use them.sub readDRC ( ) { my ( $file , $flag ) = @_ ;
for my $item (@drc::file) { if ($item =~ m/^\s*\Module:/i ) { $moduleName = getModuleName($item +); } ... }
|
|---|