File: icfp2001_cgi.ml

package info (click to toggle)
ocamlnet 2.2.9-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 17,724 kB
  • ctags: 10,053
  • sloc: ml: 63,928; ansic: 1,973; makefile: 800; sh: 651
file content (8 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8

let () =
  let buffered _ ch = new Netchannels.buffered_trans_channel ch in
  let arg_store _ name _ = if name = "file" then `File else `Memory in
  Netcgi_cgi.run ~config:Icfp2001.config ~arg_store
    ~exn_handler:Icfp2001.exn_handler
    ~output_type:(`Transactional buffered)
    Icfp2001.main