aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/example.v
diff options
context:
space:
mode:
Diffstat (limited to 'coq/example.v')
-rw-r--r--coq/example.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/coq/example.v b/coq/example.v
index 95a9adac..f482f2ab 100644
--- a/coq/example.v
+++ b/coq/example.v
@@ -4,6 +4,8 @@
$Id$
*)
+Module Example.
+
Goal forall (A B:Prop),(A /\ B) -> (B /\ A).
intros A B.
intros H.
@@ -12,3 +14,8 @@ Goal forall (A B:Prop),(A /\ B) -> (B /\ A).
assumption.
assumption.
Save and_comms.
+
+End Example.
+
+
+