]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/letrec.ma
ocaml 3.09 transition
[helm.git] / helm / matita / tests / letrec.ma
index 464f7fa21524f9be0f97feccdb1e176609bf51e7..55933cd31bf8aeb42aa0834e890fedf877cf958d 100644 (file)
@@ -1,9 +1,25 @@
+(**************************************************************************)
+(*       ___                                                              *)
+(*      ||M||                                                             *)
+(*      ||A||       A project by Andrea Asperti                           *)
+(*      ||T||                                                             *)
+(*      ||I||       Developers:                                           *)
+(*      ||T||         The HELM team.                                      *)
+(*      ||A||         http://helm.cs.unibo.it                             *)
+(*      \   /                                                             *)
+(*       \ /        This file is distributed under the terms of the       *)
+(*        v         GNU General Public License Version 2                  *)
+(*                                                                        *)
+(**************************************************************************)
+
+set "baseuri" "cic:/matita/tests/letrec/".
+
 
 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 : nat \def
+let rec plus n m \def
  match n with
   [ O \Rightarrow m
   | (S x) \Rightarrow S (plus x m) ].