mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
16 lines
400 B
OCaml
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:
|
|
*)
|