I'm reading over the Elixir guides and recently came across the various operators. One of which is the <>
operator used to concatenate two stings. It doesn't mention a name for the operator though. And it's my first time seeing that in any language.
"Hello" <> " World"
"Hello World"
In my head I just call it the "string concatenation operator", I've also never seen any official name for it. I don't believe it's used for anything else.