Help for this page

Select Code to Download


  1. or download this
    my %cds = (
      classical => [
    ...
        print "\t", join(",", @{ $_ }), "\n";
      }
    }
    
  2. or download this
      # "for( ... ) { ... }" creates assignment to $_, right?
      # doesn't this 'corrupt' value for looking up $cds{$_} ?
      for( @{ $cds{$_} } ) { ... }