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 :
moi@debian:~$ 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
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]