Help for this page

Select Code to Download


  1. or download this
    Actual possible output (out of many expected) should be:
    The DNA sequence is:
    ...
    The DNA sequence is:
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    my(@nucleo) =('A','T','C','G');
    return $nucleo[rand(@nucleo)];
    }