Help for this page

Select Code to Download


  1. or download this
    print join( '|', %{{ }} = (1)x100 );
    
  2. or download this
    use strict;
    print join '|', %{{ 'X' => 1, 'Y' => 1 }} = (1)x100;
    
  3. or download this
    my %x;
    my @x = (1) x 100;
    print join '|', %x = @x;