annotate demo/listFun.urs @ 1143:a9ba22d551f0

Remove mention of (hopefully) fixed problem with ./configure
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Jan 2010 07:44:49 -0500
parents ab3177746c78
children
rev   line source
adamc@386 1 functor Make(M : sig
adamc@386 2 type t
adamc@398 3 val toString : t -> string
adamc@398 4 val fromString : string -> option t
adamc@386 5 end) : sig
adamc@386 6 val main : unit -> transaction page
adamc@386 7 end