summaryrefslogtreecommitdiff
path: root/demo/batchG.ur
diff options
context:
space:
mode:
Diffstat (limited to 'demo/batchG.ur')
-rw-r--r--demo/batchG.ur9
1 files changed, 9 insertions, 0 deletions
diff --git a/demo/batchG.ur b/demo/batchG.ur
new file mode 100644
index 0000000..d0071d7
--- /dev/null
+++ b/demo/batchG.ur
@@ -0,0 +1,9 @@
+table t : {Id : int, A : string, B : float}
+ PRIMARY KEY Id
+
+open BatchFun.Make(struct
+ val tab = t
+ val title = "BatchG"
+ val cols = {A = BatchFun.string "A",
+ B = BatchFun.float "B"}
+ end)