Sha256: 3b22e26f9bde0d31710aeab2b95afc9e36d9490e248d725fd8634b29c36f2754

Contents?: true

Size: 254 Bytes

Versions: 323

Compression:

Stored size: 254 Bytes

Contents

package Example;
use strict;
use warnings;

sub to_rna {
	my ($dna) = @_;
    $dna =~ tr/AGCT/UCGA/;
    #$dna =~ tr/T/U/;   # y and tr are synonymes in perl 5
    #$dna =~ s/T/U/g;   # regexes are not really the right tool for this
	return $dna;
}

1;

Version data entries

323 entries across 323 versions & 1 rubygems

Version Path
trackler-2.2.1.105 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.104 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.103 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.102 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.101 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.100 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.99 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.98 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.97 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.96 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.95 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.94 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.93 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.92 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.91 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.90 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.89 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.88 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.87 tracks/perl5/exercises/rna-transcription/Example.pm
trackler-2.2.1.86 tracks/perl5/exercises/rna-transcription/Example.pm