Help for this page

Select Code to Download


  1. or download this
    use v6;
    
    my @array = (1) xx 5;
    
  2. or download this
    use v6;
    
    my @array = (1, 1, 1, 1, 1);
    
  3. or download this
    #perl5
    
    my @array = (1) x 5;