I got an answer right on one of my exercises just by guessing but want to understand Elixir.
Can you help me understand how this piece of code works
defp converter do
fn
?A -> ?U
?C -> ?G
?T -> ?A
?G -> ?C
end
end
I don’t understand the ?
character and what it is doing here.