RosettaCodeData/Task/HTTP/Erlang/http-1.erl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
213 B
Erlang

-module(main).
-export([main/1]).
main([Url|[]]) ->
inets:start(),
case http:request(Url) of
{ok, {_V, _H, Body}} -> io:fwrite("~p~n",[Body]);
{error, Res} -> io:fwrite("~p~n", [Res])
end.