aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2007-12-12 12:42:26 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2007-12-12 12:42:26 +0000
commit2067f9cbf42a7fab36a1eff3a9e725c8678c39c5 (patch)
tree66becfb3fcbe64a413b0368547f726317d8fb34d
parent3bd365769b79cd8719b4c8078755b68912dd4c6d (diff)
Added a sample file for utf8.
-rw-r--r--coq/test8.v20
1 files changed, 20 insertions, 0 deletions
diff --git a/coq/test8.v b/coq/test8.v
new file mode 100644
index 00000000..c6ab8c59
--- /dev/null
+++ b/coq/test8.v
@@ -0,0 +1,20 @@
+Add LoadPath "/home/courtieu/coq/actual/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