aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: 1155e5f7457acd16b3f61a16e89fce9963524ffa (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)(A /\ B) -> (B /\ A).
Intros A B H.
Induction H.
Apply conj.
Assumption.
Assumption.
Save and_comms.