I'm trying to concatenate bit strings
cowboy_req:reply(
200, #{<<"content-type">> => <<"text/html">>},
<<"<div style='color:#FF0'>">> ++ cowboy_req:host(Req) ++ <<"</div>">> ,
Req
)
but it gives runtime error because of ++
operator. How can I concatenate two bit strings?