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

    $Id$

    Just a version of Example.ML using XSymbol
*)    

Goal "A \\<and> B \\<longrightarrow> B \\<and> A";
by (rtac impI 1);
by (etac conjE 1);
by (rtac conjI 1);
by (assume_tac 1);
by (assume_tac 1);
qed "and_comms";