- or download this
while ( <COLL> )
{
...
@coll = split /:/;
$basicColl{$coll[0]} = $coll[1];
}
- or download this
open(CORP,"<$path") or die ("Error...: $!");
- or download this
open CORP,"<$path" or die "Error...: $!";
- or download this
if($mother)
{
...
{
$lhs="$mothers[$depth]"."_$aunties[$depth]";
}
- or download this
$lhs = join '_',
$mothers[$depth],
$mother ? $mothers[$depth-1] : $aunties[$depth];