Solution Review: Join Two Strings
The solution to Challenge: Join Two Strings.
We'll cover the following...
Solution
iex> prefix = fn prefix -> fn str -> "#{prefix} #{str}" end end
#Function<erl_eval.6.17052888>
iex> mrs =
...