index
:
pw.cloudef.rpg.git
master
rtp-support
Unnamed repository; edit this file 'description' to name the repository.
git daemon user
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
jni
/
ruby
/
benchmark
/
other-lang
/
fact.scm
blob: c98a7fedd3083d08b25b251eb40484c859e6e080 (
plain
)
1
2
3
4
5
6
7
8
(define (fact n) (if (< n 2) 1 (* n (fact (- n 1))))) (dotimes (i 10000) (fact 100))