summary refs log tree commit diff stats
path: root/raku/rna-transcription/RNA.rakumod
blob: a694d706c3fd64a0eada7698393ad325f0656c3c (plain) (blame)
1
2
3
4
5
unit module RNA;

sub to-rna (Str $dna --> Str) is export {
    $dna.trans(<G C T A> => <C G A U>);
}