]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/apply.ma
version 0.7.1
[helm.git] / helm / matita / tests / apply.ma
index 9e86635170f0c5e7e16dd0f23d5b0ff7de144d2f..e53d315f0339c8dd2053bf3203685cbd7ff06c25 100644 (file)
@@ -1,4 +1,5 @@
-%% test _with_ the WHD on the apply argument
+(* test _with_ the WHD on the apply argument *)
+set "baseuri" "cic:/matita/tests/apply/".
 
 alias id "not" = "cic:/Coq/Init/Logic/not.con".
 alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)".
@@ -6,12 +7,12 @@ alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)".
 theorem b:
   \forall x:Prop.
   (not x) \to x \to False.
-intro.
+intros.
 apply H.
 assumption.
 qed.
 
-%% test _without_ the WHD on the apply argument
+(* test _without_ the WHD on the apply argument *)
 
 alias symbol "eq" (instance 0) = "leibnitz's equality".
 
@@ -19,6 +20,6 @@ theorem a:
   \forall A:Set.
   \forall x,y : A.
   not (x=y) \to not (x=y).
-intro.
+intros.
 apply H.
 qed.