aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: 010248a6c77776d3fc9034cff4f3c0a35197929b (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.