Answers for "string concatenation elixir"

0

elixir combine two string

a <> b or "#{a} #{b}"
Posted by: Guest on September-24-2020
0

elixir string concatenation

iex> "foo" <> "bar"
"foobar"
Posted by: Guest on May-22-2021

Browse Popular Code Answers by Language