Help for this page

Select Code to Download


  1. or download this
    #!c:/perl/bin/perl -w
    $|++
    ...
    
    my $bar;
    print join(', ', (++$bar) x 4), "\n";
    
  2. or download this
    my @othercells = map { [[],[],[]] } 1..3;
    # or
    my @othercells;
    push @othercells, [[],[],[]] for 1..3;