File: example.v

package info (click to toggle)
proofgeneral 3.5-4.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,120 kB
  • ctags: 3,972
  • sloc: lisp: 34,872; makefile: 452; sh: 323; perl: 205; ansic: 43
file content (14 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(*
    Example proof script for Coq Proof General.

    example.v,v 8.0 2004/04/17 23:39:58 da Exp
*)

Goal (A,B:Prop)(A /\ B) -> (B /\ A).
  Intros A B H.
  Elim H.
  Intros.
  Split.
  Assumption.
  Assumption.
Save and_comms.