1.1.2
Try it!
paste to highlight
Download
Source
|
Bugtracker
Documentation
in autumnal colors
Old website
n!
Clojure code posted by max
created at 15 Jan 04:22
Edit
|
Back
1
2
(
defn
n!
[
n
]
(
if
(
zero?
n
)
1
(
*
(
n!
(
dec
n
)
)
n
)
)
)
52 Bytes in 2 ms with coderay