RosettaCodeData/Task/HTTP/OCaml/http.ml

6 lines
146 B
OCaml
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let () =
let url = "http://www.rosettacode.org" in
let _,_, page_content = make_request ~url ~kind:GET () in
print_endline page_content;
;;