<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - darkphotn</title>
<link>http://snipplr.com/users/darkphotn/tags/LISP</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 08 Sep 2008 08:35:49 GMT</pubDate>
<item>
<title>(Lisp) Large Factorials in LISP</title>
<link>http://snipplr.com/view/4534/large-factorials-in-lisp/</link>
<description><![CDATA[ <p>Large factorials are easy to do in LISP, although a number above (2000!) may crash it.  I designed this because of an online post from a mathematician talking about the number 1000! .  Code like this is difficult to write in C-like languages, but a snap in LISP, as the following code demonstrates.</p> ]]></description>
<pubDate>Sun, 13 Jan 2008 15:04:10 GMT</pubDate>
<guid>http://snipplr.com/view/4534/large-factorials-in-lisp/</guid>
</item>
<item>
<title>(Lisp) Simple LISP reference</title>
<link>http://snipplr.com/view/4528/simple-lisp-reference/</link>
<description><![CDATA[ <p>This demonstrates, in as few lines as possible, the basic syntax of LISP.  You should be able to figure out how to make more complex programs just by thinking about it.  For example, if (+ '1 '2) is how you add numbers, then (* '1 '2) would multiply numbers.  String them together for more complexity --- (* (+ '1 '2) (+ '3 '4)).  Note that, with numbers, you can use '1 or 1 -- it's basically the same thing.  With variables, it is different.  Designed using CLISP.</p> ]]></description>
<pubDate>Sun, 13 Jan 2008 12:55:48 GMT</pubDate>
<guid>http://snipplr.com/view/4528/simple-lisp-reference/</guid>
</item>
</channel>
</rss>