You can perform string substitution using #{}

iex> name = "José"
iex> IO.puts("Hello, #{name}!")
Hello, José!
:ok