On Wed, Aug 27, 2014 at 2:11 PM, max <[email protected]> wrote: > [{erlang,list_to_integer, > [[226,128,156,105,110,102,105,110,105,116,121, > 226,128,157]]},
The bytes sequence equals to 'â\x80\x9cinfinityâ\x80\x9d' string which looks like a correct value surrounded by weird chars. Probably, you copied/typed there some unicode quotes, while plain ascii double quote " required. Correct bytes sequence should be [34, 105, 110, 102, 105, 110, 105, 116, 121, 34] -- ,,,^..^,,,
