aboutsummaryrefslogtreecommitdiffhomepage
path: root/isar/Example.thy
diff options
context:
space:
mode:
Diffstat (limited to 'isar/Example.thy')
-rw-r--r--isar/Example.thy23
1 files changed, 21 insertions, 2 deletions
diff --git a/isar/Example.thy b/isar/Example.thy
index e869364b..16114823 100644
--- a/isar/Example.thy
+++ b/isar/Example.thy
@@ -18,7 +18,26 @@ proof
qed
qed
-text {* Proper proof text -- \textit{advanced version}. *}
+(* but on the other hand, who knows? *)
+
+text {* Proper proof text -- \textit{advanced ve"rs"ion}. What do you think? Who knows. *}
+theorem "B & A --> A & B"
+proof
+ assume "B & A" -- "one of those kinds"
+ then obtain A and B ..
+ then show "A & B" ..
+qed
+
+
+(* foo bar wiggle *)
+
+theorem "A & B --> B & A"
+proof
+ assume "A & B"
+ then obtain B and A ..
+ then show "B & A" ..
+qed
+
theorem "A & B --> B & A"
proof
@@ -30,7 +49,7 @@ qed
text {* Unstructured proof script. *}
-theorem "A & B --> B & A"
+theorem "A & B --> B & A" -- {* foo bar *}
apply (rule impI)
apply (erule conjE)
apply (rule conjI)