Help for this page

Select Code to Download


  1. or download this
      DB<126> @arr = (("A") x 2, ("T") x 2, ("C") x 3, ("G") x 3);
     => ("A", "A", "T", "T", "C", "C", "C", "G", "G", "G")
    
  2. or download this
      DB<129> $arr = ("G") x 3;
     => "GGG"