annotate demo/listFun.urs @ 2140:2b0f6b7ebf4f

Add urweb-mode command to close current XML tag Bound to "C-c /" by default to match nxml-mode's nxml-finish-element command.
author Julian Squires <julian@cipht.net>
date Mon, 04 May 2015 16:15:01 -0400
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