aboutsummaryrefslogtreecommitdiff
path: root/theories/Arith/ArithSyntax.v
diff options
context:
space:
mode:
authorherbelin2002-05-29 10:59:31 +0000
committerherbelin2002-05-29 10:59:31 +0000
commit1b3f93e474c148331e01cce9a21fbebb2ede56fb (patch)
tree46da53707fdb50aead145f5494241316d4614b31 /theories/Arith/ArithSyntax.v
parent7a05a712afb145bd8c41ad88dcabffbbd4fe0cf1 (diff)
Introduction de syntaxe convivial +,*,<=,<,>=
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2730 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Arith/ArithSyntax.v')
-rw-r--r--theories/Arith/ArithSyntax.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/theories/Arith/ArithSyntax.v b/theories/Arith/ArithSyntax.v
new file mode 100644
index 0000000000..cd762d4253
--- /dev/null
+++ b/theories/Arith/ArithSyntax.v
@@ -0,0 +1,6 @@
+Infix 4 "+" plus.
+Infix 3 "*" mult.
+Infix 1 "<=" le.
+Infix 1 "<" lt.
+Infix 1 ">=" ge.
+(* Infix 1 ">" gt.*)