OCaml stuffs
OCaml is probably the best
programming language. You can download some programs i wrote in OCaml
(available here), and in this
page, you'll find usefull stuffs for writing your own programs.
Programs
- caml2html : Download !
This program takes OCaml files (.ml, .mli, .mll
or .mly) and makes an highlighted html version of them. It has been used
for doing the web friendly versions of the code of the libraries.
See the documentation.
Libraries
You can get all the following libraries in a single file : camllibs.tar.gz.
You can see the ocamldoc documentation of the libraries here.
- Overflow : This library allows you to catch overflow of
common operations by raising an exception. The only thing you have to
do for using it is to write "open Overflow" at the beginning of your
program. No need to rewrite anything else.
- Activebuffer : This library is an extension of the Buffer
library which is included in the standard OCaml distribution. Its
interest is to allow to read buffers partially.