]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/getter/test.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / getter / test.ml
1
2 let _ = Helm_registry.load_from "foo.conf.xml"
3 let fname = Http_getter.getxml ~format:`Normal ~patch_dtd:true Sys.argv.(1) in
4 let ic = open_in fname in
5 (try
6   while true do
7     let line = input_line ic in
8     print_endline line
9   done
10 with End_of_file -> ())
11