A collection of lisp snippets I’ll be adding to as I learn more. Factorial (recursive function) (defun factorial (n) (if (= n 0) 1 (if (> n 0) (* n (factorial (- n 1))))))
Categories
Archives
Blogroll
RSS Links
A collection of lisp snippets I’ll be adding to as I learn more. Factorial (recursive function) (defun factorial (n) (if (= n 0) 1 (if (> n 0) (* n (factorial (- n 1))))))
Say’s Law, also known as the Law of Markets, is an important component of classical economics and formulated thus: It is worthwhile to remark that a product is no sooner created than it, from that instant, affords a market for other products to the full extent of its own value. When the producer has put [...]