Help for this page

Select Code to Download


  1. or download this
    
    sub createNP{
        my(@adjp);
        while ((my $counter = 0) < 100)
    
  2. or download this
    sub createNP{
        my(@adjp);
        my $counter=0; # sometimes $counter=1 as u do so inside the while 
    +loop
        while (($counter) < 100)