This website requires JavaScript.
Explore
Help
Register
Sign in
aparler
/
RosettaCodeData
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
12
Pull requests
3
Projects
Releases
Packages
Wiki
Activity
Actions
master
RosettaCodeData
/
Task
/
Time-a-function
/
Racket
/
time-a-function.rkt
4 lines
89 B
Racket
Raw
Permalink
Normal View
History
Unescape
Escape
all tasks
2013-04-11 01:07:29 -07:00
#lang
racket
Sync
2013-10-27 22:24:23 +00:00
(
define
(
fact
n
)
(
if
(
zero?
n
)
1
(
*
n
(
fact
(
sub1
n
)
)
)
)
)
all tasks
2013-04-11 01:07:29 -07:00
(
time
(
fact
5000
)
)
Reference in a new issue
Copy permalink