Sha256: e8cf1cfa26973babe67251ce3433a3c9b3261cf16d2eebd2b480307444961d92
Contents?: true
Size: 273 Bytes
Versions: 187
Compression:
Stored size: 273 Bytes
Contents
-module(example). -export([to_rna/1, test_version/0]). to_rna(Strand) -> lists:map(fun transcribe_to_rna/1, Strand). test_version() -> 1. transcribe_to_rna($G) -> $C; transcribe_to_rna($C) -> $G; transcribe_to_rna($T) -> $A; transcribe_to_rna($A) -> $U.
Version data entries
187 entries across 187 versions & 1 rubygems