aboutsummaryrefslogtreecommitdiff
path: root/isa/Example.ML
blob: bf5ee3f07a342c9845c8f71a80a5f63b0b48f933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(*
    Example proof script for Isabelle Proof General.

    $Id$
*)    

Goal "A & B --> B & A";
by (rtac impI 1);
by (etac conjE 1);
by (rtac conjI 1);
by (assume_tac 1);
by (assume_tac 1);
qed "and_comms";

Goal "P(x) --> Q(x)";