Interpolation de la chaîne d'élixir

iex> str1 = "hello"
iex> str2 = "blackode"
iex> mystring = "#{str1}#{str2}"
# helloblackode
patrick204nqh