<?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: Factorial and Memoizing</title>
	<atom:link href="http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/feed/" rel="self" type="application/rss+xml" />
	<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/</link>
	<description>I Never Metaop I Didn&#039;t Like</description>
	<lastBuildDate>Thu, 07 Mar 2013 12:58:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Lanny Ripple</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2374</link>
		<dc:creator><![CDATA[Lanny Ripple]]></dc:creator>
		<pubDate>Tue, 17 Aug 2010 19:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2374</guid>
		<description><![CDATA[Also

my $fact := (1, [\*] 1..*);
say $fact[0..10].perl;

(1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800)]]></description>
		<content:encoded><![CDATA[<p>Also</p>
<p>my $fact := (1, [\*] 1..*);<br />
say $fact[0..10].perl;</p>
<p>(1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colomon</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2370</link>
		<dc:creator><![CDATA[colomon]]></dc:creator>
		<pubDate>Wed, 11 Aug 2010 08:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2370</guid>
		<description><![CDATA[Brill!]]></description>
		<content:encoded><![CDATA[<p>Brill!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RobertS</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2369</link>
		<dc:creator><![CDATA[RobertS]]></dc:creator>
		<pubDate>Wed, 11 Aug 2010 07:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2369</guid>
		<description><![CDATA[This works for me:

my $fact = [\*] 1,1..*;
say $fact.munch(20).perl;

(1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200, 1307674368000, 20922789888000, 355687428096000, 6.402373705728e+15, 1.21645100408832e+17)]]></description>
		<content:encoded><![CDATA[<p>This works for me:</p>
<p>my $fact = [\*] 1,1..*;<br />
say $fact.munch(20).perl;</p>
<p>(1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200, 1307674368000, 20922789888000, 355687428096000, 6.402373705728e+15, 1.21645100408832e+17)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pm</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2368</link>
		<dc:creator><![CDATA[Pm]]></dc:creator>
		<pubDate>Wed, 11 Aug 2010 07:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2368</guid>
		<description><![CDATA[Note that it would need to be parenthesized, because of item assignment:

my $fact = (1, [\*] 1..*);

It still doesn&#039;t work (yet?), because itemizing the Parcel tends to make it eager, so we end up evaluating an infinite list.  But the following does work:

my $fact = (1, [\*] 1..100);

which at least gets you to 100 factorial, and doesn&#039;t take forever to do it.  :-)

Pm]]></description>
		<content:encoded><![CDATA[<p>Note that it would need to be parenthesized, because of item assignment:</p>
<p>my $fact = (1, [\*] 1..*);</p>
<p>It still doesn&#8217;t work (yet?), because itemizing the Parcel tends to make it eager, so we end up evaluating an infinite list.  But the following does work:</p>
<p>my $fact = (1, [\*] 1..100);</p>
<p>which at least gets you to 100 factorial, and doesn&#8217;t take forever to do it.  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Pm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colomon</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2366</link>
		<dc:creator><![CDATA[colomon]]></dc:creator>
		<pubDate>Tue, 10 Aug 2010 16:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2366</guid>
		<description><![CDATA[I tried that first and it failed.  :(]]></description>
		<content:encoded><![CDATA[<p>I tried that first and it failed.  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddward</title>
		<link>http://justrakudoit.wordpress.com/2010/08/10/factorial-and-memoizing/#comment-2365</link>
		<dc:creator><![CDATA[Eddward]]></dc:creator>
		<pubDate>Tue, 10 Aug 2010 16:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://justrakudoit.wordpress.com/?p=143#comment-2365</guid>
		<description><![CDATA[I don&#039;t have perl6 installed at work.  Would the following work?

my $fact = 1, [\*] 1..*;]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t have perl6 installed at work.  Would the following work?</p>
<p>my $fact = 1, [\*] 1..*;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
