From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 8FA327F747 for ; Fri, 8 Aug 2014 20:28:49 +0200 (CEST) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of frederic.bour@lakaban.net) identity=pra; client-ip=94.23.239.155; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="frederic.bour@lakaban.net"; x-sender="frederic.bour@lakaban.net"; x-conformance=sidf_compatible Received-SPF: Pass (mail3-smtp-sop.national.inria.fr: domain of frederic.bour@lakaban.net designates 94.23.239.155 as permitted sender) identity=mailfrom; client-ip=94.23.239.155; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="frederic.bour@lakaban.net"; x-sender="frederic.bour@lakaban.net"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@mail.lakaban.net) identity=helo; client-ip=94.23.239.155; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="frederic.bour@lakaban.net"; x-sender="postmaster@mail.lakaban.net"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AuIZAAUW5VNeF++b/2dsb2JhbABagmItAU9Xgl0agmCrK4QulV2BY4dIAYErd4QDAQEEASMEGQEBExkLAQ8LGA0dAgIhJBIGExIJiBMDCQwJrnt3hQIBBYsJAwqFYBEGjR+BRWQEB4J5gVKFBQWNDIMqhGWCCYFWhVCHIAOGL4FGgn0 X-IPAS-Result: AuIZAAUW5VNeF++b/2dsb2JhbABagmItAU9Xgl0agmCrK4QulV2BY4dIAYErd4QDAQEEASMEGQEBExkLAQ8LGA0dAgIhJBIGExIJiBMDCQwJrnt3hQIBBYsJAwqFYBEGjR+BRWQEB4J5gVKFBQWNDIMqhGWCCYFWhVCHIAOGL4FGgn0 X-IronPort-AV: E=Sophos;i="5.01,826,1400018400"; d="scan'208";a="74341462" Received: from lakaban.net (HELO mail.lakaban.net) ([94.23.239.155]) by mail3-smtp-sop.national.inria.fr with ESMTP; 08 Aug 2014 20:28:48 +0200 Received: from [192.168.0.31] (cpc27-cmbg15-2-0-cust159.5-4.cable.virginm.net [86.27.188.160]) (Authenticated sender: defre@ygg-drasil.fr) by mail.lakaban.net (Postfix) with ESMTPSA id EDF5F1200019; Fri, 8 Aug 2014 20:25:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=lakaban.net; s=default; t=1407522318; bh=i0PzF6OrWJYrhZzBs4qTgRETARg399us7lE95kiYMR0=; h=Date:From:Subject:To:Cc:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=Mnh9CXIyX2TP73s8pDRGra9Hvq6DEtWCL2Hro6fsNaGd14wpxjFPF3+VyOGbbaSKC wh66fQwkwAq56ifaAEhsi8jTNTNgz3AxbP5VATTI5lYyYLXRoMsGbqKOdFbbywCB9w hhKpRBnGpe6rHawE8Mr1I4xe/CTqlMR8nj+iMooY= Date: Fri, 08 Aug 2014 18:29:03 +0001 From: =?iso-8859-1?b?RnLpZOlyaWM=?= Bour To: Markus Mottl Cc: Gabriel Scherer , Ben Millwood , Philippe Veber , caml users Message-Id: <1407522483.1213.2@mail.lakaban.net> In-Reply-To: References: X-Mailer: geary/0.6.1 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=-aGRjbgCoaTbE28Gu9jhE" Subject: Re: [Caml-list] Not letting channels escape. --=-aGRjbgCoaTbE28Gu9jhE Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable ST.input_line is just a reified effect, it can't be executed outside of=20 the ST monad. You can make the value escape, but you can't do anything with it.=20 And because of the existential variable being propagated, it can't be=20 executed outside of this run of the ST value. Le ven. 8 ao=C3=BBt 2014 =C3=A0 19:23, Markus Mottl a=20 =C3=A9crit : > How would you implement this safely with ST here? I wasn't using the > standard input_line but "ST.input_line", which already returns a > monadic type. The trick here was to use the monadic "return" to > return a closure that captures the existential variable, allowing me > to execute the computation outside of the safe region. >=20 > Regards, > Markus >=20 > On Fri, Aug 8, 2014 at 1:37 PM, Gabriel Scherer > wrote: >> The ST trick only works when all primitives affecting resource are=20 >> in the >> monadic abstraction (they mention the ST region variable in their >> computation type). This is not the case in Markus example as=20 >> "input_line" is >> a non-typed effect. Using ST safely would be possible in OCaml, but=20 >> you >> would have to completely eschew the standard library and use a=20 >> different >> base where all effectful functions have a monadic type. It is the=20 >> library, >> not the language itself, that allows this. >>=20 >> On the contrary, linear types are distinctly a language feature.=20 >> Using >> monads to encapsulate a form of linearity is an old trick. If you=20 >> want to >> have a taste of built-in linear typing, you may want to give Mezzo=20 >> a try ( >> http://protz.github.io/mezzo/ ). >>=20 >>=20 >> On Fri, Aug 8, 2014 at 7:21 PM, Markus Mottl=20 >> wrote: >>>=20 >>> I see, I was replying to the "reference problem" and hadn't read=20 >>> your >>> implementation, which, besides existentials, already requires=20 >>> monads >>> as return values. >>>=20 >>> Actually, it just occurred to me that one can even break the=20 >>> monadic >>> approach in a purely functional way. You are just one "return"=20 >>> away >>> from disaster: >>>=20 >>> let f =3D >>> ST.with_file "foo.txt" ~f:{ >>> ST.f =3D fun c -> ST.return (fun () -> ignore (ST.input_line=20 >>> c)) >>> } >>> in >>> f () >>>=20 >>> You'd have to eliminate "return", in which case it wouldn't be a=20 >>> monad >>> anymore and not general enough for realistic uses of "with_file". >>>=20 >>> Regards, >>> Markus >>>=20 >>> On Fri, Aug 8, 2014 at 12:01 PM, Ben Millwood=20 >>> >>> wrote: >>> > I protected against that in my module by carrying the=20 >>> existential type >>> > variable in the result of input_line as well, because I stumbled=20 >>> into >>> > exactly that example while originally drafting my e-mail :) >>> > >>> > In a sense I'm reinventing monadic IO but in a bit of a=20 >>> half-hearted >>> > way. It >>> > wouldn't take much work to make it a bit more fully-hearted, but=20 >>> it >>> > would >>> > still be inconvenient to actually use. >>> > >>> > >>> > On 8 August 2014 16:44, Markus Mottl =20 >>> wrote: >>> >> >>> >> It doesn't even require references to screw things up here.=20=20 >>> Just >>> >> return the closure containing the channel from within "f": >>> >> >>> >> In_channel.with_file "foo.txt" ~f:(fun ic () -> input_line ic) >>> >> |> fun f -> f () >>> >> >>> >> The initial Stream-example is basically just an instance of this >>> >> "returning a closure" problem. >>> >> >>> >> But the availability of references and exceptions arguably makes >>> >> things worse, because you cannot even use monadic I/O +=20 >>> existential >>> >> types to achieve guaranteed safety. >>> >> >>> >> Regards, >>> >> Markus >>> >> >>> >> On Fri, Aug 8, 2014 at 10:49 AM, Ben Millwood >>> >> >>> >> wrote: >>> >> > It's been pointed out to me that the above certainly isn't=20 >>> perfectly >>> >> > secure. >>> >> > E.g. >>> >> > >>> >> > let f =3D ref (fun () -> ()) in >>> >> > with_file "safe.ml" ~f:{ f =3D fun c -> >>> >> > return (f :=3D fun () -> >>> >> > Fn.ignore (map (input_line c) ~f:print_string_option)) }; >>> >> > !f () >>> >> > >>> >> > gets Exception: (Sys_error "Bad file descriptor"). Even=20 >>> though the >>> >> > channel >>> >> > and any operations on it can't escape the closure, the type=20 >>> of a >>> >> > function >>> >> > which uses them needn't mention them at all. >>> >> > >>> >> > It's pretty hard to do anything about this in the presence of >>> >> > unrestricted >>> >> > side effects, so perhaps there's a reason why the Haskellers=20 >>> are >>> >> > excited >>> >> > about this sort of thing and you don't see it in OCaml so=20 >>> much :) >>> >> > >>> >> > That said, you do seem to be forced to make a bit more of an=20 >>> effort >>> >> > to >>> >> > break >>> >> > things here, so I don't think the technique is completely=20 >>> without >>> >> > merit, >>> >> > perhaps in cases where you'd be defining all your own=20 >>> operations >>> >> > anyway, >>> >> > so >>> >> > the duplication isn't an issue. >>> >> > >>> >> > >>> >> > On 8 August 2014 12:30, Ben Millwood=20 >>> >>> >> > wrote: >>> >> >> >>> >> >> There's a trick with existential types, as used in e.g.=20 >>> Haskell's ST >>> >> >> monad. It uses the fact that an existentially-quantified type >>> >> >> variable >>> >> >> can't >>> >> >> escape its scope, so if your channel type and results that=20 >>> depend on >>> >> >> it >>> >> >> are >>> >> >> parametrised by an existential type variable, the=20 >>> corresponding >>> >> >> values >>> >> >> can't >>> >> >> escape the scope of the callback either. >>> >> >> >>> >> >> Something like: >>> >> >> >>> >> >> module ST : sig >>> >> >> type ('a, 's) t >>> >> >> include Monad.S2 with type ('a, 's) t :=3D ('a, 's) t >>> >> >> type 's chan >>> >> >> type 'a f =3D { f : 's . 's chan -> ('a, 's) t } >>> >> >> val with_file : string -> f:'a f -> 'a >>> >> >> >>> >> >> val input_line : 's chan -> (string option, 's) t >>> >> >> end =3D struct >>> >> >> module T =3D struct >>> >> >> type ('a, 's) t =3D 'a >>> >> >> let return x =3D x >>> >> >> let bind x f =3D f x >>> >> >> let map x ~f =3D f x >>> >> >> end >>> >> >> include T >>> >> >> include Monad.Make2(T) >>> >> >> type 's chan =3D In_channel.t >>> >> >> type 'a f =3D { f : 's . 's chan -> ('a, 's) t } >>> >> >> let with_file fp ~f:{ f } =3D In_channel.with_file fp ~f >>> >> >> let input_line c =3D In_channel.input_line c >>> >> >> end >>> >> >> ;; >>> >> >> >>> >> >> match ST.with_file "safe.ml" ~f:{ ST.f =3D fun c ->=20 >>> ST.input_line c } >>> >> >> with >>> >> >> | None -> print_endline "None" >>> >> >> | Some line -> print_endline line >>> >> >> >>> >> >> >>> >> >> On 8 August 2014 11:23, Philippe Veber=20 >>> >>> >> >> wrote: >>> >> >>> >>> >> >>> Dear all, >>> >> >>> >>> >> >>> many libraries like lwt, batteries or core provide a very=20 >>> nice >>> >> >>> idiom >>> >> >>> to >>> >> >>> be used when a function uses a resource (file, connection,=20 >>> mutex, >>> >> >>> et >>> >> >>> cetera), for instance in Core.In_channel, the function: >>> >> >>> >>> >> >>> val with_file : ?binary:bool -> string -> f:(t -> 'a) -> 'a >>> >> >>> >>> >> >>> opens a channel for [f] and ensures it is closed after the=20 >>> call to >>> >> >>> [f], >>> >> >>> even if it raises an exception. So these functions basically >>> >> >>> prevent >>> >> >>> from >>> >> >>> leaking resources. They fail, however, to prevent a user=20 >>> from using >>> >> >>> the >>> >> >>> resource after it has been released. For instance, writing: >>> >> >>> >>> >> >>> input_char (In_channel.with_file fn (fun x -> x)) >>> >> >>> >>> >> >>> is perfectly legal type-wise, but will fail at run-time.=20 >>> There are >>> >> >>> of >>> >> >>> course less obvious situations, for instance if you define a >>> >> >>> function: >>> >> >>> >>> >> >>> val lines : in_channel -> string Stream.t >>> >> >>> >>> >> >>> then the following will also fail: >>> >> >>> >>> >> >>> Stream.iter f (In_channel.with_file fn lines) >>> >> >>> >>> >> >>> My question is the following: is there a way to have the=20 >>> compiler >>> >> >>> check >>> >> >>> resources are not used after they are closed? I presume=20 >>> this can >>> >> >>> only >>> >> >>> be >>> >> >>> achieved by strongly restricting the kind of function=20 >>> passed to >>> >> >>> [with_file]. >>> >> >>> One simple restriction I see is to define a type of=20 >>> immediate >>> >> >>> value, >>> >> >>> that >>> >> >>> roughly correspond to "simple" datatypes (no closures, no=20 >>> lazy >>> >> >>> expressions): >>> >> >>> >>> >> >>> module Immediate : sig >>> >> >>> type 'a t =3D private 'a >>> >> >>> val int : int -> int t >>> >> >>> val list : ('a -> 'a t) -> 'a list -> 'a list t >>> >> >>> val tuple : ('a -> 'a t) -> ('b -> 'b t) -> ('a * 'b) ->=20 >>> ('a * >>> >> >>> 'b) t >>> >> >>> (* for records, use the same trick than in >>> >> >>> http://www.lexifi.com/blog/dynamic-types *) >>> >> >>> ... >>> >> >>> end >>> >> >>> >>> >> >>> and have the type of [with_file] changed to >>> >> >>> >>> >> >>> val with_file : string -> f:(in_channel -> 'a Immediate.t)=20 >>> -> 'a >>> >> >>> >>> >> >>> I'm sure there are lots of smarter solutions out there.=20 >>> Would >>> >> >>> anyone >>> >> >>> happen to know some? >>> >> >>> >>> >> >>> Cheers, >>> >> >>> Philippe. >>> >> >>> >>> >> >> >>> >> > >>> >> >>> >> >>> >> >>> >> -- >>> >> Markus Mottl http://www.ocaml.info=20=20=20=20=20=20=20=20 >>> markus.mottl@gmail.com >>> > >>> > >>>=20 >>>=20 >>>=20 >>> -- >>> Markus Mottl http://www.ocaml.info=20=20=20=20=20=20=20=20 >>> markus.mottl@gmail.com >>>=20 >>> -- >>> Caml-list mailing list. Subscription management and archives: >>> https://sympa.inria.fr/sympa/arc/caml-list >>> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners >>> Bug reports: http://caml.inria.fr/bin/caml-bugs >>=20 >>=20 >=20 >=20 >=20 > --=20 > Markus Mottl http://www.ocaml.info=20=20=20=20=20=20=20=20 > markus.mottl@gmail.com >=20 > --=20 > Caml-list mailing list. Subscription management and archives: > https://sympa.inria.fr/sympa/arc/caml-list > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs --=-aGRjbgCoaTbE28Gu9jhE Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
ST.input_line is just a reified effect, it can't be executed outside o= f the ST monad.
You can make the value escape, but you can't do a= nything with it. 

And because of the existent= ial variable being propagated, it can't be executed outside of this run of = the ST value.

Le ven. 8 ao=C3=BBt 2014 =C3=A0 19:23, Markus Mottl = <markus.mottl@gmail.com> a =C3=A9crit :
How would you implement this safely with ST here? I wasn't using = the standard input_line but "ST.input_line", which already returns a monadic type. The trick here was to use the monadic "return" to return a closure that captures the existential variable, allowing me to execute the computation outside of the safe region. Regards, Markus On Fri, Aug 8, 2014 at 1:37 PM, Gabriel Scherer <gabriel.scherer@gmail.com> wrote:
The ST trick only works when all primitives affecting resource= are in the monadic abstraction (they mention the ST region variable in their computation type). This is not the case in Markus example as "input_line" = is a non-typed effect. Using ST safely would be possible in OCaml, but you would have to completely eschew the standard library and use a different base where all effectful functions have a monadic type. It is the library, not the language itself, that allows this. On the contrary, linear types are distinctly a language feature. Using monads to encapsulate a form of linearity is an old trick. If you want to have a taste of built-in linear typing, you may want to give Mezzo a try ( http://protz.github.io/mezzo/ ). On Fri, Aug 8, 2014 at 7:21 PM, Markus Mottl <markus.mottl@gmail.com>= ; wrote:
I see, I was replying to the "reference problem" and hadn't read your implementation, which, besides existentials, already requires monads as return values. Actually, it just occurred to me that one can even break the monadic approach in a purely functional way. You are just one "return" away from disaster: let f =3D ST.with_file "foo.txt" ~f:{ ST.f =3D fun c -> ST.return (fun () -> ignore (ST.input_line c= )) } in f () You'd have to eliminate "return", in which case it wouldn't be a monad anymore and not general enough for realistic uses of "with_file". Regards, Markus On Fri, Aug 8, 2014 at 12:01 PM, Ben Millwood <bmillwood@janestreet.com= > wrote: > I protected against that in my module by carrying the existential type > variable in the result of input_line as well, because I stumbled into > exactly that example while originally drafting my e-mail :) > > In a sense I'm reinventing monadic IO but in a bit of a half-hearted > way. It > wouldn't take much work to make it a bit more fully-hearted, but it > would > still be inconvenient to actually use. > > > On 8 August 2014 16:44, Markus Mottl <markus.mottl@gmail.com> w= rote: >> >> It doesn't even require references to screw things up here. Just >> return the closure containing the channel from within "f": >> >> In_channel.with_file "foo.txt" ~f:(fun ic () -> input_line i= c) >> |> fun f -> f () >> >> The initial Stream-example is basically just an instance of this >> "returning a closure" problem. >> >> But the availability of references and exceptions arguably makes >> things worse, because you cannot even use monadic I/O + existenti= al >> types to achieve guaranteed safety. >> >> Regards, >> Markus >> >> On Fri, Aug 8, 2014 at 10:49 AM, Ben Millwood >> <bmillwood@janestreet.com> >> wrote: >> > It's been pointed out to me that the above certainly isn't p= erfectly >> > secure. >> > E.g. >> > >> > let f =3D ref (fun () -> ()) in >> > with_file "safe.ml" ~f:{ f =3D fun c -> >> > return (f :=3D fun () -> >> > Fn.ignore (map (input_line c) ~f:print_string_option)) }; >> > !f () >> > >> > gets Exception: (Sys_error "Bad file descriptor"). Even thou= gh the >> > channel >> > and any operations on it can't escape the closure, the type = of a >> > function >> > which uses them needn't mention them at all. >> > >> > It's pretty hard to do anything about this in the presence of >> > unrestricted >> > side effects, so perhaps there's a reason why the Haskellers= are >> > excited >> > about this sort of thing and you don't see it in OCaml so mu= ch :) >> > >> > That said, you do seem to be forced to make a bit more of an= effort >> > to >> > break >> > things here, so I don't think the technique is completely wi= thout >> > merit, >> > perhaps in cases where you'd be defining all your own operat= ions >> > anyway, >> > so >> > the duplication isn't an issue. >> > >> > >> > On 8 August 2014 12:30, Ben Millwood <bmillwood@janestree= t.com> >> > wrote: >> >> >> >> There's a trick with existential types, as used in e.g. = Haskell's ST >> >> monad. It uses the fact that an existentially-quantified= type >> >> variable >> >> can't >> >> escape its scope, so if your channel type and results th= at depend on >> >> it >> >> are >> >> parametrised by an existential type variable, the corres= ponding >> >> values >> >> can't >> >> escape the scope of the callback either. >> >> >> >> Something like: >> >> >> >> module ST : sig >> >> type ('a, 's) t >> >> include Monad.S2 with type ('a, 's) t :=3D ('a, 's) t >> >> type 's chan >> >> type 'a f =3D { f : 's . 's chan -> ('a, 's) t } >> >> val with_file : string -> f:'a f -> 'a >> >> >> >> val input_line : 's chan -> (string option, 's) t >> >> end =3D struct >> >> module T =3D struct >> >> type ('a, 's) t =3D 'a >> >> let return x =3D x >> >> let bind x f =3D f x >> >> let map x ~f =3D f x >> >> end >> >> include T >> >> include Monad.Make2(T) >> >> type 's chan =3D In_channel.t >> >> type 'a f =3D { f : 's . 's chan -> ('a, 's) t } >> >> let with_file fp ~f:{ f } =3D In_channel.with_file fp = ~f >> >> let input_line c =3D In_channel.input_line c >> >> end >> >> ;; >> >> >> >> match ST.with_file "safe.ml" ~f:{ ST.f =3D fun c -> S= T.input_line c } >> >> with >> >> | None -> print_endline "None" >> >> | Some line -> print_endline line >> >> >> >> >> >> On 8 August 2014 11:23, Philippe Veber <philippe.vebe= r@gmail.com> >> >> wrote: >> >>> >> >>> Dear all, >> >>> >> >>> many libraries like lwt, batteries or core provide a= very nice >> >>> idiom >> >>> to >> >>> be used when a function uses a resource (file, conne= ction, mutex, >> >>> et >> >>> cetera), for instance in Core.In_channel, the functi= on: >> >>> >> >>> val with_file : ?binary:bool -> string -> f:(t= -> 'a) -> 'a >> >>> >> >>> opens a channel for [f] and ensures it is closed aft= er the call to >> >>> [f], >> >>> even if it raises an exception. So these functions b= asically >> >>> prevent >> >>> from >> >>> leaking resources. They fail, however, to prevent a = user from using >> >>> the >> >>> resource after it has been released. For instance, w= riting: >> >>> >> >>> input_char (In_channel.with_file fn (fun x -> x)) >> >>> >> >>> is perfectly legal type-wise, but will fail at run-t= ime. There are >> >>> of >> >>> course less obvious situations, for instance if you = define a >> >>> function: >> >>> >> >>> val lines : in_channel -> string Stream.t >> >>> >> >>> then the following will also fail: >> >>> >> >>> Stream.iter f (In_channel.with_file fn lines) >> >>> >> >>> My question is the following: is there a way to have= the compiler >> >>> check >> >>> resources are not used after they are closed? I pres= ume this can >> >>> only >> >>> be >> >>> achieved by strongly restricting the kind of functio= n passed to >> >>> [with_file]. >> >>> One simple restriction I see is to define a type of = immediate >> >>> value, >> >>> that >> >>> roughly correspond to "simple" datatypes (no closure= s, no lazy >> >>> expressions): >> >>> >> >>> module Immediate : sig >> >>> type 'a t =3D private 'a >> >>> val int : int -> int t >> >>> val list : ('a -> 'a t) -> 'a list -> 'a = list t >> >>> val tuple : ('a -> 'a t) -> ('b -> 'b t) = -> ('a * 'b) -> ('a * >> >>> 'b) t >> >>> (* for records, use the same trick than in >> >>> http://www.lexifi.com/blog/dynamic-types *) >> >>> ... >> >>> end >> >>> >> >>> and have the type of [with_file] changed to >> >>> >> >>> val with_file : string -> f:(in_channel -> 'a = Immediate.t) -> 'a >> >>> >> >>> I'm sure there are lots of smarter solutions out the= re. Would >> >>> anyone >> >>> happen to know some? >> >>> >> >>> Cheers, >> >>> Philippe. >> >>> >> >> >> > >> >> >> >> -- >> Markus Mottl http://www.= ocaml.info markus.mottl@gmail.com > > -- Markus Mottl http://www.ocaml.inf= o markus.mottl@gmail.com -- Caml-list mailing list. Subscription management and archives: https://sympa.inria= .fr/sympa/arc/caml-list Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http://caml.in= ria.fr/bin/caml-bugs
--=20
Markus Mottl http://www.ocam= l.info markus.mottl@gmail.com
--=20
Caml-list mailing list. Subscription management and archives: https://sympa.inria.= fr/sympa/arc/caml-list Beginner's list: = http://groups.yahoo.com/group/ocaml_beginners Bug reports: http://caml.inr= ia.fr/bin/caml-bugs
= --=-aGRjbgCoaTbE28Gu9jhE--