aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Arith/Factorial.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-05-14 01:33:26 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-05-14 01:33:26 +0000
commit0667c8e4bfd796f6e42c97041ab9d48236791d3b (patch)
tree81c897a8b402460c9714ad92d3cae1c23e9d4908 /theories/Arith/Factorial.v
parent08090c64a3322ca17e6af733831b66d9ffd0756c (diff)
Amelioration affichage
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4019 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Arith/Factorial.v')
-rw-r--r--theories/Arith/Factorial.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/theories/Arith/Factorial.v b/theories/Arith/Factorial.v
index 71cef55ce..ca176a6c6 100644
--- a/theories/Arith/Factorial.v
+++ b/theories/Arith/Factorial.v
@@ -22,6 +22,8 @@ Fixpoint fact [n:nat]:nat:=
|(S n) => (mult (S n) (fact n))
end.
+Arguments Scope fact [ nat_scope ].
+
Lemma lt_O_fact : (n:nat)(lt O (fact n)).
Proof.
Induction n; Unfold lt; Simpl; Auto with arith.