<?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: Day 19: Whatever</title>
	<atom:link href="http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/feed/" rel="self" type="application/rss+xml" />
	<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/</link>
	<description>Something cool about Perl 6 every day</description>
	<lastBuildDate>Sun, 03 Feb 2013 05:15:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Moritz</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-212</link>
		<dc:creator><![CDATA[Moritz]]></dc:creator>
		<pubDate>Wed, 23 Dec 2009 17:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-212</guid>
		<description><![CDATA[It seems there is a bug in Rakudo that prevents &lt;code&gt;* ~ &quot;a&quot;&lt;/code&gt; from working - I&#039;m sorry, I should have checked that before writing my post.]]></description>
		<content:encoded><![CDATA[<p>It seems there is a bug in Rakudo that prevents <code>* ~ "a"</code> from working &#8211; I&#8217;m sorry, I should have checked that before writing my post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamped</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-179</link>
		<dc:creator><![CDATA[vamped]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 01:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-179</guid>
		<description><![CDATA[fine:  my @x = &quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;e&quot;;]]></description>
		<content:encoded><![CDATA[<p>fine:  my @x = &#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;, &#8220;d&#8221;, &#8220;e&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamped</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-178</link>
		<dc:creator><![CDATA[vamped]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 01:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-178</guid>
		<description><![CDATA[my @x = &lt;a&gt; ; didn&#039;t post correctly]]></description>
		<content:encoded><![CDATA[<p>my @x = <a> ; didn&#8217;t post correctly</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamped</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-177</link>
		<dc:creator><![CDATA[vamped]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 01:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-177</guid>
		<description><![CDATA[Why does this work:
    my @x=1,2,3,4,5;
    say @x.map: *+2;   # outputs: 34567

But not this?:
    my @x=&lt;a&gt;;
    say @x.map: * ~ &quot;a&quot;;
    # outputs: No applicable candidates found to dispatch to for &#039;map&#039; in Main (file , line )]]></description>
		<content:encoded><![CDATA[<p>Why does this work:<br />
    my @x=1,2,3,4,5;<br />
    say @x.map: *+2;   # outputs: 34567</p>
<p>But not this?:<br />
    my @x=<a>;<br />
    say @x.map: * ~ &#8220;a&#8221;;<br />
    # outputs: No applicable candidates found to dispatch to for &#8216;map&#8217; in Main (file , line )</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moritz</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-174</link>
		<dc:creator><![CDATA[Moritz]]></dc:creator>
		<pubDate>Sat, 19 Dec 2009 16:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-174</guid>
		<description><![CDATA[Yes, you could.

(Actually there&#039;s a slight difference, a pointy block will return a Block object, and *-5 a WhateverCode, but both should work for array indexing)]]></description>
		<content:encoded><![CDATA[<p>Yes, you could.</p>
<p>(Actually there&#8217;s a slight difference, a pointy block will return a Block object, and *-5 a WhateverCode, but both should work for array indexing)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bened</title>
		<link>http://perl6advent.wordpress.com/2009/12/19/day-19-whatever/#comment-171</link>
		<dc:creator><![CDATA[bened]]></dc:creator>
		<pubDate>Sat, 19 Dec 2009 15:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=158#comment-171</guid>
		<description><![CDATA[Does this mean I could write
say @array[-&gt; $x { $x-5 }];
too?
Or even
my $make-index = -&gt; $x { $x-5 };
say @array[$make-index];
?]]></description>
		<content:encoded><![CDATA[<p>Does this mean I could write<br />
say @array[-&gt; $x { $x-5 }];<br />
too?<br />
Or even<br />
my $make-index = -&gt; $x { $x-5 };<br />
say @array[$make-index];<br />
?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
