Help for this page

Select Code to Download


  1. or download this
    foreach (@array, 1) {
        #push @array,'a';#replace following statement with this one
    ...
    __END__
    a
    1
    
  2. or download this
    push @array,'a';
    @array = (@array,'a');
    
  3. or download this
    1 while 1