Help for this page

Select Code to Download


  1. or download this
    ...
    for my $i (0...$#a)
    ...
        my $j = shift;
        print $a[$j];
    }
    
  2. or download this
    ...
    for my $i (0...$#a)
    ...
        $f->Checkbutton(-text => $a[$i], -command => sub { fun($i) } )->pa
    +ck();
    }
    ...