<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>《Common Lisp初学点滴》的评论</title>
	<atom:link href="http://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/feed/" rel="self" type="application/rss+xml" />
	<link>https://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/</link>
	<description>一个程序员的心路历程</description>
	<lastBuildDate>Wed, 25 Mar 2026 09:21:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>作者：刘保华</title>
		<link>https://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/#comment-514</link>
		<dc:creator>刘保华</dc:creator>
		<pubDate>Tue, 10 Jan 2012 21:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/2011/08/05/common-lisp%e5%88%9d%e5%ad%a6%e7%82%b9%e6%bb%b4/#comment-514</guid>
		<description>GNU CLISP 2.49和LispWorks 6.0.1中
结果都是0呀，你试试。
(car &#039;(nil 1 2 3))结果为nil,所以在你的版本中就直接返回0
不会就如递归的</description>
		<content:encoded><![CDATA[<p>GNU CLISP 2.49和LispWorks 6.0.1中<br />
结果都是0呀，你试试。<br />
(car &#8216;(nil 1 2 3))结果为nil,所以在你的版本中就直接返回0<br />
不会就如递归的</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：刘保华</title>
		<link>https://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/#comment-515</link>
		<dc:creator>刘保华</dc:creator>
		<pubDate>Tue, 10 Jan 2012 13:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/2011/08/05/common-lisp%e5%88%9d%e5%ad%a6%e7%82%b9%e6%bb%b4/#comment-515</guid>
		<description>更简洁的写法：
(defun summit-apply (lst)
   (apply #&#039;+ (remove nil lst)))
你的版本有的问题,(nil 1 2 3)直接返回0
(defun summit-rec (lst)
   (if lst
      (+ (or (car lst) 0) (summit-rec (cdr lst)))
      0))</description>
		<content:encoded><![CDATA[<p>更简洁的写法：<br />
(defun summit-apply (lst)<br />
   (apply #&#8217;+ (remove nil lst)))<br />
你的版本有的问题,(nil 1 2 3)直接返回0<br />
(defun summit-rec (lst)<br />
   (if lst<br />
      (+ (or (car lst) 0) (summit-rec (cdr lst)))<br />
      0))</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Claud Xiao</title>
		<link>https://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/#comment-516</link>
		<dc:creator>Claud Xiao</dc:creator>
		<pubDate>Thu, 27 Oct 2011 21:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/2011/08/05/common-lisp%e5%88%9d%e5%ad%a6%e7%82%b9%e6%bb%b4/#comment-516</guid>
		<description>括号外面加括号的方法是，把光标移动到括号上，然后输入 ,W</description>
		<content:encoded><![CDATA[<p>括号外面加括号的方法是，把光标移动到括号上，然后输入 ,W</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：gugu</title>
		<link>https://tonybai.com/2011/08/05/some-experience-of-common-lisp-beginner/#comment-517</link>
		<dc:creator>gugu</dc:creator>
		<pubDate>Wed, 10 Aug 2011 16:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://tonybai.com/2011/08/05/common-lisp%e5%88%9d%e5%ad%a6%e7%82%b9%e6%bb%b4/#comment-517</guid>
		<description>lisp学起来麻烦么？几乎没学过编程的小白飘过。</description>
		<content:encoded><![CDATA[<p>lisp学起来麻烦么？几乎没学过编程的小白飘过。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
