aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
blob: cfe852034850793e2fecdbfe5ba3199a8bd1bef0 (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.
  Elim H.
  Intros.
  Split.
  Assumption.
  Assumption.
Save and_comms.