]> matita.cs.unibo.it Git - helm.git/commitdiff
let rec example
authorStefano Zacchiroli <zack@upsilon.cc>
Wed, 25 May 2005 15:11:59 +0000 (15:11 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Wed, 25 May 2005 15:11:59 +0000 (15:11 +0000)
helm/matita/tests/letrec.ma [new file with mode: 0644]

diff --git a/helm/matita/tests/letrec.ma b/helm/matita/tests/letrec.ma
new file mode 100644 (file)
index 0000000..6712765
--- /dev/null
@@ -0,0 +1,9 @@
+
+definition plus: nat \to nat \to nat \def
+  let rec plus (n,m:nat) \def
+    match n with
+    [ O \Rightarrow m
+    | (S x) \Rightarrow S (plus x m) ]
+  in
+  plus.
+