aboutsummaryrefslogtreecommitdiff
path: root/isar/Example.thy
diff options
context:
space:
mode:
Diffstat (limited to 'isar/Example.thy')
-rw-r--r--isar/Example.thy12
1 files changed, 12 insertions, 0 deletions
diff --git a/isar/Example.thy b/isar/Example.thy
new file mode 100644
index 00000000..b8b7328b
--- /dev/null
+++ b/isar/Example.thy
@@ -0,0 +1,12 @@
+
+theory Example = Main:;
+
+lemma "A --> B --> A";
+proof;
+ assume A;
+ show "B --> A";
+ proof;
+ qed;
+qed;
+
+end;