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