Help for this page

Select Code to Download


  1. or download this
    print "M$End";
    
  2. or download this
        for (my $i=$Start; $i <= ($End-1) ; $i++){        
            print "M$i --> V$i-->";
        }
        print "M$End";
    
  3. or download this
        for (my $i=$Start; $i <= $End; $i++) {
            print "M$i";
            print " --> V$i-->"   unless $i == $End;
        }