Message 1 of 11
Just testing you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
What's wrong with this code?
(defun factorial (n / product)
(setq i 0 product 1)
(repeat n
(setq i (1+ i) product (* i product))
)
product
)
John F. Uhden