<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Fun with parentheses</title>
	<atom:link href="http://codemate.wordpress.com/2008/10/30/fun-with-parentheses/feed/" rel="self" type="application/rss+xml" />
	<link>http://codemate.wordpress.com/2008/10/30/fun-with-parentheses/</link>
	<description>Being friends with the code</description>
	<lastBuildDate>Sat, 01 Aug 2009 13:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Danil Glinenko</title>
		<link>http://codemate.wordpress.com/2008/10/30/fun-with-parentheses/#comment-4348</link>
		<dc:creator>Danil Glinenko</dc:creator>
		<pubDate>Fri, 31 Oct 2008 23:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=221#comment-4348</guid>
		<description>[sourcecode language=&#039;java&#039;]
(define choose_chocolate
  (lambda (lst)
    (cond
      ((and (list? (car lst)) (contains_chocolate? (car lst))) (car lst))
      (else (choose_chocolate (cdr lst)))
      )
    )
  )
(define contains_chocolate? 
  (lambda (lst)
    (cond
      ((null? lst) #f)
      ((eq? &#039;chocolate (car lst)) #t)
      (else (contains_chocolate? (cdr lst)))
      )
    )
  )
[/sourcecode]</description>
		<content:encoded><![CDATA[<pre class="brush: java;">
(define choose_chocolate
  (lambda (lst)
    (cond
      ((and (list? (car lst)) (contains_chocolate? (car lst))) (car lst))
      (else (choose_chocolate (cdr lst)))
      )
    )
  )
(define contains_chocolate?
  (lambda (lst)
    (cond
      ((null? lst) #f)
      ((eq? 'chocolate (car lst)) #t)
      (else (contains_chocolate? (cdr lst)))
      )
    )
  )
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikhail Naganov</title>
		<link>http://codemate.wordpress.com/2008/10/30/fun-with-parentheses/#comment-4347</link>
		<dc:creator>Mikhail Naganov</dc:creator>
		<pubDate>Fri, 31 Oct 2008 21:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=221#comment-4347</guid>
		<description>Cool. I&#039;m glad you like them.

I find &quot;Reasoned Schemer&quot; too academic --- it&#039;s about implementing logic programming (something like Prolog) in Scheme. Can&#039;t finish reading it for several months ;)

I&#039;m also looking forward to buy &quot;Little MLer&quot; to learn static typing in a funny way.

Now, go get ((chocolate chip) (doughy cookie)) !</description>
		<content:encoded><![CDATA[<p>Cool. I&#8217;m glad you like them.</p>
<p>I find &#8220;Reasoned Schemer&#8221; too academic &#8212; it&#8217;s about implementing logic programming (something like Prolog) in Scheme. Can&#8217;t finish reading it for several months ;)</p>
<p>I&#8217;m also looking forward to buy &#8220;Little MLer&#8221; to learn static typing in a funny way.</p>
<p>Now, go get ((chocolate chip) (doughy cookie)) !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Basil Shikin</title>
		<link>http://codemate.wordpress.com/2008/10/30/fun-with-parentheses/#comment-4346</link>
		<dc:creator>Basil Shikin</dc:creator>
		<pubDate>Fri, 31 Oct 2008 04:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://codemate.wordpress.com/?p=221#comment-4346</guid>
		<description>Your first sentence puts it in the best way possible: it is fun to learn functional programming.

I&#039;ve started looking at Scala recently: it looks like a nice mixture of OO and functional approaches</description>
		<content:encoded><![CDATA[<p>Your first sentence puts it in the best way possible: it is fun to learn functional programming.</p>
<p>I&#8217;ve started looking at Scala recently: it looks like a nice mixture of OO and functional approaches</p>
]]></content:encoded>
	</item>
</channel>
</rss>
