Help for this page

Select Code to Download


  1. or download this
    my @arr = (1) x 10; # We can process 10 wangos.
    
  2. or download this
    my $max_wangos = 10;
    my @arr = (1) x $max_wangos;
    
  3. or download this
    use strict MAX_WANGOS => 10;
    my @arr = (1) x MAX_WANGOS;