]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/clear.ma
ocaml 3.09 transition
[helm.git] / helm / matita / tests / clear.ma
index 24bb3377ca92172c0f2653848677f9c5776529f2..9f1655b597fc6da3dc6b763334075a4e7ae9eb12 100644 (file)
@@ -1,5 +1,5 @@
 (**************************************************************************)
-(*       ___                                                               *)
+(*       ___                                                              *)
 (*      ||M||                                                             *)
 (*      ||A||       A project by Andrea Asperti                           *)
 (*      ||T||                                                             *)
 (**************************************************************************)
 
 set "baseuri" "cic:/matita/tests/clear".
+include "coq.ma".
 alias num (instance 0) = "natural number".
 alias symbol "eq" (instance 0) = "Coq's leibnitz's equality".
 alias id "True" = "cic:/Coq/Init/Logic/True.ind#xpointer(1/1)".
 
-
-
 theorem stupid:
   \forall a: True.
   \forall b: 0 = 0.
   0 = 0.
-intros 1 [H] .
+intros 1 (H).
 clear H.
-intros 1 [H].
+intros 1 (H).
 exact H.
 qed.