This Web
All Webs
Erlang Links
Erlang Web Ring
++
1> "Some " ++ "text " ++ "and" ++ " stuff". "Some text and stuff"
lists:append
2> lists:append(["Some ", "text ", "and", " stuff"]). "Some text and stuff"