]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/library/nat/nat.ma
fixed deps
[helm.git] / helm / software / matita / library / nat / nat.ma
index b600072c61ba97cfa9e862251d04c566b3a0e765..85f598d129a434f7cad878dd9c8a2fc4fdc56077 100644 (file)
 (*                                                                        *)
 (**************************************************************************)
 
-set "baseuri" "cic:/matita/nat/nat".
-
 include "higher_order_defs/functions.ma".
 
+theorem esempio: \forall A,B,C:Prop.(A \to B \to C) \to (A \to B)
+\to A \to C.
+
+
+
 inductive nat : Set \def
   | O : nat
   | S : nat \to nat.
@@ -26,7 +29,7 @@ definition pred: nat \to nat \def
  | (S p) \Rightarrow p ].
 
 theorem pred_Sn : \forall n:nat.n=(pred (S n)).
- intros. reflexivity.
+ intros. simplify. reflexivity.
 qed.
 
 theorem injective_S : injective nat nat S.