Help for this page

Select Code to Download


  1. or download this
    D:\Development>perl -e "print 'a3' x 10"
    a3a3a3a3a3a3a3a3a3a3
    
  2. or download this
    while ($seq~=/\G(...)/sg) {
      print "Got: $1\n";
    }