aboutsummaryrefslogtreecommitdiffhomepage
path: root/lego/example.l
blob: 4a50699023099183bfe933dcc4defe6e3719dcdc (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 and_commutes: {A,B:Prop}(and A B) -> (and B A);
intros; andI;
Refine H; intros; Immed; Refine H; intros; Immed;
Save and_commutes;