ocaml-containers/.ocamlinit
2013-12-01 23:36:23 +01:00

17 lines
438 B
OCaml

#use "topfind";;
#thread
#directory "_build/";;
#directory "_build/tests/";;
#load "containers.cma";;
#require "threads";;
#load "containers_thread.cma";;
open Containers;;
open Sequence.Infix;;
#install_printer Bencode.pretty;;
#install_printer HGraph.Default.fmt;;
#require "CamlGI";;
#load "containers_cgi.cma";;
let pp_html fmt h = Format.pp_print_string fmt (ToWeb.HTML.render h);;
#install_printer pp_html;;
(* vim:syntax=ocaml:
*)