Help for this page

Select Code to Download


  1. or download this
    my @names = qw(adam jake john betty);
    
  2. or download this
    my @adambooks;
    my @jakebooks;
    .
    .
    .
    
  3. or download this
    foreach (@names) {
        my $cur_name = $_;
        &modify($cur_name, "Their correspinding array")
    }