aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2004-04-14 16:58:47 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2004-04-14 16:58:47 +0000
commitf47c287fb678f1c8f805001e34c74ab264a095e7 (patch)
treeabc195f04a005ef310a30475e1cd685987f9718f /coq
parentc621a2ea58e24b04db91787e38a6842fe80a477b (diff)
Deleted file
Diffstat (limited to 'coq')
-rw-r--r--coq/xsymbtest.coq37
1 files changed, 0 insertions, 37 deletions
diff --git a/coq/xsymbtest.coq b/coq/xsymbtest.coq
deleted file mode 100644
index c3bee71e..00000000
--- a/coq/xsymbtest.coq
+++ /dev/null
@@ -1,37 +0,0 @@
-(* Grammar for symbols:
- a symbol is encoded only if
- - preceded by _ or some space or some symbol
- **and**
- - followed by _ or some space or some symbol
-
- Grammar for sub/superscript:
-
- - a double _ introduces a subscript that ends at the first space
- - a double ^ introduces a superscript that ends at the first space
-
- - a _ followed by { introduces a subscript
- expression that ends at the first }
- - a ^ followed by { introduces a superscript
- expression that ends at the first }
- *)
-
-
-
-foo_alpha_1_beta_3 (* this should appear like foo_a_1_B_3 where a and B are greek *)
-delta__1 delta^^1 (* greek delta with a sub 1 and the same with super 1 *)
-x_{a+b} x^{a+b} (* x with a+b subscripted and then superscripted *)
-philosophi (* no greek letter should appear on this line *)
-aalpha alphaa (* no greek letter *)
-_alpha (* _a where a is greek *)
-alpha_ (* a_ where a is greek *)
-
-
-
-Fixpoint toto (x:nat) {struct x} : nat := (* nat should appear as |N *)
- match x with
- | O => O (* double arrow here *)
- | S y => toto y (* double arrow here *)
- end.
-
-Lemma titi : forall x:nat,x=x. (* symbolique for-all and nat *)
- \ No newline at end of file