Sven <[EMAIL PROTECTED]> writes:

> I forgot :
> 
>    o test if ocaml works fine without installing camlp4 (in particular with
>      regard to streams). Does somebody have any information about
>    this ?

yes. streams parser doesn't work anymore without camlp4 eg :
[EMAIL PROTECTED]:~$ ocaml
        Objective Caml version 3.04

# let f = parser
    [< ''a' >] -> ();;
Syntax error
# #load "camlp4o.cma";;
        Camlp4 Parsing version 3.04

# let f = parser
    [< ''a' >] -> ();;
val f : char Stream.t -> unit = <fun>
# 

-- 
Rémi Vanicat
[EMAIL PROTECTED]
http://dept-info.labri.u-bordeaux.fr/~vanicat

Reply via email to