Help for this page

Select Code to Download


  1. or download this
    tom@wintermute tom $ perl -c t
    syntax error at t line 17, near "else"
    t had compilation errors.
    
  2. or download this
    if ( exists $list{$location} ) {
        my $value = $list{$location};
    ...
    else {
        $list{$location} = "1";
    }
    
  3. or download this
    if ( exists $list{$location} ) {
        my $value = $list{$location};
    ...
    else {
        $list{$location} = "1";
    }
    
  4. or download this
    *** 10,18 ****
              $value++;
    ...
      }
      else {
          $list{$location} = "1";