为什么这不起作用?无法解决这个问题。似乎是字符串匹配方式的东西。
我一直收到错误error:function_clause
。
-module(rna_transcription).
-export([to_rna/1, to_rna_nucleotide/1]).
to_rna(DNA) -> lists:map(fun to_rna_nucleotide/1, DNA).
to_rna_nucleotide("G") -> "C";
to_rna_nucleotide("C") -> "G";
to_rna_nucleotide("T") -> "A";
to_rna_nucleotide("A") -> "U".
答案 0 :(得分:5)
string的元素是char类型,而不是string。
__repr__