Sha256: 376ed3aca23aba559b9bfb06feff3444bd628aeb26f7c0033740e3a9a9fd803f
Contents?: true
Size: 346 Bytes
Versions: 123
Compression:
Stored size: 346 Bytes
Contents
-module(example). -export([to_rna/1, test_version/0]). to_rna(Strand) -> try lists:map(fun transcribe_to_rna/1, Strand) of Result -> Result catch _:_ -> error end. test_version() -> 2. transcribe_to_rna($G) -> $C; transcribe_to_rna($C) -> $G; transcribe_to_rna($T) -> $A; transcribe_to_rna($A) -> $U.
Version data entries
123 entries across 123 versions & 1 rubygems