aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: 619072c26be0acc314161a2718a90e2e479875d9 (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 and_comms.