aboutsummaryrefslogtreecommitdiff
path: root/isa/Example-Xsym.ML
diff options
context:
space:
mode:
authorDavid Aspinall2006-12-05 12:49:56 +0000
committerDavid Aspinall2006-12-05 12:49:56 +0000
commit7077e2e8fed4a52af4894954c8446781cb5d40d6 (patch)
tree023224bae2e0e278d99e94bba2f0d3fe98984495 /isa/Example-Xsym.ML
parent1ea338cca92204c9a98a373adb80ab60c3a10107 (diff)
Deleted file
Diffstat (limited to 'isa/Example-Xsym.ML')
-rw-r--r--isa/Example-Xsym.ML20
1 files changed, 0 insertions, 20 deletions
diff --git a/isa/Example-Xsym.ML b/isa/Example-Xsym.ML
deleted file mode 100644
index ed97c291..00000000
--- a/isa/Example-Xsym.ML
+++ /dev/null
@@ -1,20 +0,0 @@
-(*
- Example proof script for Isabelle Proof General.
-
- $Id$
-
- Just a version of Example.ML using XSymbol.
-
- Also subscripts/superscripts: A\<^sup>1 \\<or> A\<^sub>2
- [NB: these can't be used in identifiers or otherwise
- parsed by Isabelle unless declared as part of a theory's
- concrete syntax, see docs or examples in HOL/IMP.]
-*)
-
-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";