diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-08-16 15:09:53 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-08-16 15:09:53 -0400 |
commit | 62c0731399525d736de1c4e303c1abd1677a8d0c (patch) | |
tree | 4c9288ddb1fba9991f128d3f6569c0382303dc72 /tests/ctuple.lac | |
parent | 6cac02596e21666de5658f83957d3fa7d7b60a8c (diff) |
Compiling a con-tuple-using test case
Diffstat (limited to 'tests/ctuple.lac')
-rw-r--r-- | tests/ctuple.lac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ctuple.lac b/tests/ctuple.lac new file mode 100644 index 00000000..68c1301f --- /dev/null +++ b/tests/ctuple.lac @@ -0,0 +1,9 @@ +val page = fn p :: (Type * Type) => fn f : p.1 -> string => fn x : p.1 => <html><body> + {cdata (f x)} +</body></html> + +val page_string = page [(string, int)] (fn x => x) + +val main : unit -> page = fn () => <html><body> + <a link={page_string "Hi"}>Hi</a> +</body></html> |