Help for this page

Select Code to Download


  1. or download this
    my @array = qw(0 0 0 0 0); # well, not much on this one, but . . .
    my @array = (0)x5;         # pure evil
    
  2. or download this
    for (0..$#array) {
        print $array[$_],',';
    }