aboutsummaryrefslogtreecommitdiffhomepage
path: root/lego/example.l
blob: 525db25b8b95a879b29df132089a9995927f5b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(*
    Example proof script for Lego Proof General.
 
    $Id$
*)

Module example Import lib_logic;
Goal {A,B:Prop}(A /\ B) -> (B /\ A);
intros;
Refine H;
intros;
andI;
Immed;
Save and_comms;