I'm looking at an OCaml source file that begins like this
(*s Implementation of n-ary trees. (Some code is borrowed from the OCaml
standard library, which is copyright 1996 INRIA.) *)
What does (*s mean? I thought the s might be a typo, but it appears in several files, so it must be deliberate.
(** ... *)doc comments. The above looks like a doc comment, I vaguely remember there is some other documentation extractor out there... - lukstafi