aboutsummaryrefslogtreecommitdiffhomepage
path: root/demo/list.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-05-28 10:35:25 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-05-28 10:35:25 -0400
commit6a6c98d74f0eb61b52e8adc5385698a224eeccc1 (patch)
treebc9e633b76c75ea47d6cfdb826c549ed7cd4c66a /demo/list.ur
parent3cb644caeed50e5c82778b5ed7c165950655109a (diff)
Demo compiles with pattern-matching-fu
Diffstat (limited to 'demo/list.ur')
-rw-r--r--demo/list.ur4
1 files changed, 2 insertions, 2 deletions
diff --git a/demo/list.ur b/demo/list.ur
index 107bf92c..961708ea 100644
--- a/demo/list.ur
+++ b/demo/list.ur
@@ -1,6 +1,6 @@
datatype list t = Nil | Cons of t * list t
-fun length (t ::: Type) (ls : list t) =
+fun length [t] (ls : list t) =
let
fun length' (ls : list t) (acc : int) =
case ls of
@@ -10,7 +10,7 @@ fun length (t ::: Type) (ls : list t) =
length' ls 0
end
-fun rev (t ::: Type) (ls : list t) =
+fun rev [t] (ls : list t) =
let
fun rev' (ls : list t) (acc : list t) =
case ls of