tracks/erlang/exercises/rna-transcription/src/example.erl in trackler-2.0.6.30 vs tracks/erlang/exercises/rna-transcription/src/example.erl in trackler-2.0.6.31
- old
+ new
@@ -1,9 +1,14 @@
-module(example).
--export([to_rna/1]).
+-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;