Help for this page

Select Code to Download


  1. or download this
    my @a = $x;
    push @a, @b for 1..$x;
    
  2. or download this
    my @a = ( $x, map { @b } 1..$x );
    
  3. or download this
    my @a = ( $x, (@b) x $x );