Help for this page

Select Code to Download


  1. or download this
        $seq ~~ m:overlap/ GUAUG /;
    
        say "Found ", +@$0, " at:";
        say "\t", $_.pos for @$0;
    
  2. or download this
        use Perl6::Rules;
        use Perl6::Say;
    ...
    
        say "Found ", scalar(@$0), " at:";
        say "\t", $_->pos for @$0;