Help for this page

Select Code to Download


  1. or download this
    for $x(1...3){
         for$y(1...3){
    ...
         push @products, $pro;
         }
    }
    
  2. or download this
    #! /usr/bin/perl
    
    ...
    @pro=splice (@products,0,8);
    print  "@pro\n";
    }