]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/letrec.ma
incomplete proof completed
[helm.git] / helm / matita / tests / letrec.ma
index 6712765aa4a2d2e2013c60929084890302be345e..24b63593cc92e9595c257d59df2758ee94c631e6 100644 (file)
@@ -1,9 +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.
+alias id "O" = "cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1/1)".
+alias id "S" = "cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1/2)".
+alias id "nat" = "cic:/Coq/Init/Datatypes/nat.ind#xpointer(1/1)".
 
+let rec plus n m \def
+ match n with
+  [ O \Rightarrow m
+  | (S x) \Rightarrow S (plus x m) ].