diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-03-10 16:38:38 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-03-10 16:38:38 -0400 |
commit | 4bc363c5ec2724b9d310e17181ca87517c98aa68 (patch) | |
tree | c0dff25071f38e045374e6d001ef7356af04e5db /demo/batchG.ur | |
parent | b8e7b835e7cde4cf374138467da8b16e93a65eb9 (diff) |
BatchG demo
Diffstat (limited to 'demo/batchG.ur')
-rw-r--r-- | demo/batchG.ur | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/demo/batchG.ur b/demo/batchG.ur new file mode 100644 index 00000000..e370b26e --- /dev/null +++ b/demo/batchG.ur @@ -0,0 +1,8 @@ +table t : {Id : int, A : string, B : float} + +open BatchFun.Make(struct + val tab = t + val title = "BatchG" + val cols = {A = BatchFun.string "A", + B = BatchFun.float "B"} + end) |