Help for this page

Select Code to Download


  1. or download this
    print join ',', @boxes;
    
  2. or download this
    my $printed = 0;
    foreach my $box ( @boxes ) {
        print ',' if $printed++;
        print $box;
    }