Help for this page

Select Code to Download


  1. or download this
    my $indent = ' 'x5;
    # Yields '     '
    
  2. or download this
    my @list = (1)x5;
    # Yields (1,1,1,1,1)
    
  3. or download this
      @placeholders = map {'?'} @columns;
    
  4. or download this
      @placeholders = ('?')x @columns;