Using ocamlc, in a windows environment :
type splitter = {varname:string; count:int; mean:float}
worked fine when I was compiling the source but :
type splitter = {Varname:string; count:int; mean:float}
caused the compiler to complain (without giving much information)
File "splitter.ml", line 1, characters 17-24:
Error: Syntax error
In the mean time, the second line was working perfectly with OCaml. Is there a good reason for this behavior ? I did not find anything online.