<?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"
	>
<channel>
	<title>Comments on: SICP sections 4.1.3 - 4.1.5</title>
	<atom:link href="http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/feed/" rel="self" type="application/rss+xml" />
	<link>http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/</link>
	<description>Eli Bendersky's personal website</description>
	<pubDate>Fri, 21 Nov 2008 20:53:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: eliben</title>
		<link>http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/#comment-106618</link>
		<dc:creator>eliben</dc:creator>
		<pubDate>Tue, 05 Feb 2008 16:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/#comment-106618</guid>
		<description>I suppose you're right, I could indeed replace my home-cooked procedure with a &lt;tt&gt;map&lt;/tT&gt; on &lt;tt&gt;cons&lt;/tt&gt;.

However, don't forget to prepend the 'frame tag.</description>
		<content:encoded><![CDATA[<p>I suppose you&#8217;re right, I could indeed replace my home-cooked procedure with a <tt>map</tt> on <tt>cons</tt>.</p>
<p>However, don&#8217;t forget to prepend the &#8216;frame tag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flávio Cruz</title>
		<link>http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/#comment-105764</link>
		<dc:creator>Flávio Cruz</dc:creator>
		<pubDate>Mon, 04 Feb 2008 01:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/2007/12/08/sicp-sections-413-415/#comment-105764</guid>
		<description>Your make-frame from 4.11 could be more easily expressed as (scheme):

(define (make-frame variables values)
  (if (not (= (length variables) (length values)))
      (error "length mismatch -- MAKE-FRAME" variables values)
      (map cons variables values)))</description>
		<content:encoded><![CDATA[<p>Your make-frame from 4.11 could be more easily expressed as (scheme):</p>
<p>(define (make-frame variables values)<br />
  (if (not (= (length variables) (length values)))<br />
      (error &#8220;length mismatch &#8212; MAKE-FRAME&#8221; variables values)<br />
      (map cons variables values)))</p>
]]></content:encoded>
	</item>
</channel>
</rss>
