Reputation: 2583
In some code I have seen something like this
{ok, Req2} = cowboy_req:reply(200, [], <<"Hello World!">>, Req),
I can't find out what does those <<>> mean.. Thank you.
Upvotes: 2
Views: 516
Reputation: 20916
In Erlang in they refer to binaries/bitstrings, see Bit Strings and Binaries and Bit Syntax Expressions.
Upvotes: 7