Help for this page

Select Code to Download


  1. or download this
    my @array= ( 1..5 );
    for( @array ) {
    ...
    4
    Last element.
    5
    
  2. or download this
    my $five= 5;
    *array= sub { \@_ }->( 1, 2, $five, 4, $five );
    ...
    4
    Last element.
    5