Help for this page

Select Code to Download


  1. or download this
    push @{$wo_usr_proj{$project}}, $user;
    
  2. or download this
    foreach $proj(sort(keys(%wo_usr_proj)))
    {
    ...
       }
       print RHANDLE "\n\n";
    }
    
  3. or download this
    use Data::Dumper;
    print Dumper \%wo_usr_proj;
    ...
                              'WO'
                            ]
            };
    
  4. or download this
    my $foo= "bar";
    my $ref= \$foo;
    ...
    
    __END__
    bar
    
  5. or download this
    my @array= qw(foo bar baz);
    my $ref= \@array;
    ...
    
    __END__
    foo:bar:baz
    
  6. or download this
    my %h= ( foo => 'bar' );
    my $ref= \%h;
    ...
    
    __END__
    foo -> bar