annotate demo/batchG.ur @ 690:01b6f2ee2ef0

Redo signal implementation to avoid memory leaks
author Adam Chlipala <adamc@hcoop.net>
date Thu, 02 Apr 2009 15:12:06 -0400
parents fcf0bd3d1667
children 1a317a707d71
rev   line source
adamc@650 1 table t : {Id : int, A : string, B : float}
adamc@650 2
adamc@650 3 open BatchFun.Make(struct
adamc@650 4 val tab = t
adamc@650 5 val title = "BatchG"
adamc@650 6 val cols = {A = BatchFun.string "A",
adamc@650 7 B = BatchFun.float "B"}
adamc@650 8 end)