]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/library/nat/nat.ma
...
[helm.git] / helm / software / matita / library / nat / nat.ma
index daac5a23d3a4c658cc67e4ddd2af29bb8caac21b..b098279e62e9ed3ecf1cf99a04e564faaf3bbf2c 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.
 
+interpretation "Natural numbers" 'N = nat.
+alias num (instance 0) = "natural number".
+
 definition pred: nat \to nat \def
  \lambda n:nat. match n with
  [ O \Rightarrow  O