repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
r18455 reverted.
[ruby-svn.git]
/
benchmark
/
other-lang
/
fact.scm
blob
c98a7fedd3083d08b25b251eb40484c859e6e080
1
(define (fact n)
2
(if (< n 2)
3
1
4
(* n (fact (- n 1)))))
5
6
(dotimes (i 10000)
7
(fact 100))
8