diff options
author | Camil Staps | 2016-08-25 23:11:48 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 23:11:48 +0200 |
commit | 96e8f9357510f7b21bc7d8005ff45bb7109a9ad5 (patch) | |
tree | ca4b4c49df94cf838cd175e9e05676b723b45a01 /examples/tup.fusp | |
parent | Fix issue with trailing arguments (diff) |
Added tup example
Diffstat (limited to 'examples/tup.fusp')
-rw-r--r-- | examples/tup.fusp | 3 |
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; |