ocaml-containers/.ocamlinit
2013-10-18 23:29:47 +02:00

16 lines
400 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;;
#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:
*)