aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: 8934a3d8bfa7937693b45bc0cc9c9eabf67bf525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(*
    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 conj_comms.