<?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>Comments on: Currying in Smalltalk</title>
	<atom:link href="http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/</link>
	<description>The neighbourhood of 7</description>
	<lastBuildDate>Wed, 12 May 2010 16:29:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Steve Taylor</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-1734</link>
		<dc:creator>Steve Taylor</dc:creator>
		<pubDate>Thu, 29 Oct 2009 23:52:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-1734</guid>
		<description>Previous comment by &#039;Walter Arlene&#039; is spam (mouse over their name and see their url is a link to a classified ad site and their post is content free.)

Also - excellent post on currying. I&#039;m always blown away how Smalltalk (and some other dynamic languages, to be fair) can be made to do things they were never designed to do with minimal effort.</description>
		<content:encoded><![CDATA[<p>Previous comment by &#8216;Walter Arlene&#8217; is spam (mouse over their name and see their url is a link to a classified ad site and their post is content free.)</p>
<p>Also &#8211; excellent post on currying. I&#8217;m always blown away how Smalltalk (and some other dynamic languages, to be fair) can be made to do things they were never designed to do with minimal effort.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Morley</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-1233</link>
		<dc:creator>David Morley</dc:creator>
		<pubDate>Sat, 15 Mar 2008 22:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-1233</guid>
		<description>Vassili?  Is it you? Moscow, 1993?

Still doing Smalltalk? You&#039;re lucky. The rest of us were forced out of Smalltalk in ~1997. Vadim quit, in part because of this.  Andre held on as long as possible. Most of the others never did get it. The newer hires have never heard of it.

I&#039;d love to hear from you. Pls contact me at [address removed to prevent harvesting by spambots --v].

[editor: please forward this to Vassili Bykov]</description>
		<content:encoded><![CDATA[<p>Vassili?  Is it you? Moscow, 1993?</p>
<p>Still doing Smalltalk? You&#8217;re lucky. The rest of us were forced out of Smalltalk in ~1997. Vadim quit, in part because of this.  Andre held on as long as possible. Most of the others never did get it. The newer hires have never heard of it.</p>
<p>I&#8217;d love to hear from you. Pls contact me at [address removed to prevent harvesting by spambots --v].</p>
<p>[editor: please forward this to Vassili Bykov]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-6</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Fri, 23 Mar 2007 16:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-6</guid>
		<description>Clever implementation, Vassili :)</description>
		<content:encoded><![CDATA[<p>Clever implementation, Vassili :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-4</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Fri, 23 Mar 2007 16:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-4</guid>
		<description>argh!

That is what I get for not reading the whole article before commenting.</description>
		<content:encoded><![CDATA[<p>argh!</p>
<p>That is what I get for not reading the whole article before commenting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-3</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Fri, 23 Mar 2007 16:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-3</guid>
		<description>Vassili

I believe your code snippet is incorrect, as it will not evaluate.
I think you meant to write;

&#124; add inc &#124;
add := [:a &#124;  [:b &#124; a + b]].
inc := add value: 1.
(inc value: 2) + (inc value: 3)</description>
		<content:encoded><![CDATA[<p>Vassili</p>
<p>I believe your code snippet is incorrect, as it will not evaluate.<br />
I think you meant to write;</p>
<p>| add inc |<br />
add := [:a |  [:b | a + b]].<br />
inc := add value: 1.<br />
(inc value: 2) + (inc value: 3)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/comment-page-1/#comment-2</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 23 Mar 2007 12:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.3plus4.org/2007/03/23/currying-in-smalltalk/#comment-2</guid>
		<description>Thanks for the explanation! I just heard this term during a podcast on dynamic languages by some guys that were Smalltalkers (Ruby was their game). They struggled to explain this concept. As you can imagine it&#039;s difficult to do without code examples. Now, thanks to you, I understand it.

Sean</description>
		<content:encoded><![CDATA[<p>Thanks for the explanation! I just heard this term during a podcast on dynamic languages by some guys that were Smalltalkers (Ruby was their game). They struggled to explain this concept. As you can imagine it&#8217;s difficult to do without code examples. Now, thanks to you, I understand it.</p>
<p>Sean</p>
]]></content:encoded>
	</item>
</channel>
</rss>
