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