aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: 4fb38af62575076e2eb76017e92e03b7305a5861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(*
    Example proof script for Coq Proof General.
 
    $Id$
*)

Goal (A,B:Prop)(and A B) -> (and B A).
Intros A B H.
Induction H.
Apply conj.
Assumption.
Assumption.
Save and_comms.