RosettaCodeData/Task/HTTP/OCaml/http.ocaml

6 lines
146 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
let () =
let url = "http://www.rosettacode.org" in
let _,_, page_content = make_request ~url ~kind:GET () in
print_endline page_content;
;;