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

Module example Import lib_logic;

Goal {A,B:Prop}(and A B) -> (and B A);
intros;
Refine H;
intros;
andI;
Immed;
Save and_comms;