aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>1999-11-13 13:53:35 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>1999-11-13 13:53:35 +0000
commit948b8bd7a59b7c35552cb0f4a5b95ee8574f5686 (patch)
treeba485d34b7b6a609992c3b87a6d0bac137ac13df /coq/example.v
parent18de9e47c089594762123ef8f9a80428aba7eef8 (diff)
Use infix syntax
Diffstat (limited to 'coq/example.v')
-rw-r--r--coq/example.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/coq/example.v b/coq/example.v
index 4fb38af6..1155e5f7 100644
--- a/coq/example.v
+++ b/coq/example.v
@@ -4,7 +4,8 @@
$Id$
*)
-Goal (A,B:Prop)(and A B) -> (and B A).
+
+Goal (A,B:Prop)(A /\ B) -> (B /\ A).
Intros A B H.
Induction H.
Apply conj.
@@ -12,4 +13,3 @@ Assumption.
Assumption.
Save and_comms.
-