aboutsummaryrefslogtreecommitdiff
path: root/examples/tup.fusp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tup.fusp')
-rw-r--r--examples/tup.fusp3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/tup.fusp b/examples/tup.fusp
new file mode 100644
index 0000000..5942ac0
--- /dev/null
+++ b/examples/tup.fusp
@@ -0,0 +1,3 @@
+tup a b = (a,b);
+app f a b = f a b;
+main = app app app app tup 1 2;