Help for this page

Select Code to Download


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