aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2008-01-24 23:47:03 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2008-01-24 23:47:03 +0000
commit1fc7fc2d99f1db94bfbc518f1a0daa4ca3aa344c (patch)
tree0b313c266f2993621c46904c2504fd222f1fd665 /etc
parentf69c037f642fab03437e196af41da5a6f7178b2a (diff)
Deleted file
Diffstat (limited to 'etc')
-rw-r--r--etc/coq/utf8-sample.v22
1 files changed, 0 insertions, 22 deletions
diff --git a/etc/coq/utf8-sample.v b/etc/coq/utf8-sample.v
deleted file mode 100644
index caa82a0e..00000000
--- a/etc/coq/utf8-sample.v
+++ /dev/null
@@ -1,22 +0,0 @@
-(* -*- coding: utf-8; -*- *)
-
-Add LoadPath "/usr/lib/coq/ide".
-Require Import utf8.
-
-(* Printing of unicode notation, in *goals* *)
-Lemma test : forall A:Prop, A -> A.
-auto.
-Qed.
-
-(* Parsing of unicode notation, in *goals* *)
-Lemma test2 : ∀ A:Prop, A → A.
-intro.
-intro.
-auto.
-Qed.
-
-(* Printing of unicode notation, in *response* *)
-Check (fun (X:Set)(x:X) => x).
-
-(* Parsing of unicode notation, in *response* *)
-Check (∀A, A→A). \ No newline at end of file