<?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 8 &#8211; Different Names of Different Things</title>
	<atom:link href="http://perl6advent.wordpress.com/2010/12/08/different-names-of-different-things/feed/" rel="self" type="application/rss+xml" />
	<link>http://perl6advent.wordpress.com/2010/12/08/different-names-of-different-things/</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: GlitchMr</title>
		<link>http://perl6advent.wordpress.com/2010/12/08/different-names-of-different-things/#comment-1817</link>
		<dc:creator><![CDATA[GlitchMr]]></dc:creator>
		<pubDate>Sat, 15 Dec 2012 21:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=557#comment-1817</guid>
		<description><![CDATA[The problem is that everything is a list in Perl 6. For example in example below, `&#039;advent-calendar&#039;` is one element list (containing itself).

&lt;pre&gt;&lt;code&gt;&gt; reverse &#039;advent-calendar&#039;
advent-calendar&lt;/pre&gt;&lt;/code&gt;

Even accessing list elements gives a list, so Perl 6 cannot overload `[]` syntax to access string characters.

&lt;pre&gt;&lt;code&gt;&gt; &#039;advent-calendar&#039;[0][0][0][0][0][0][0][0]
advent-calendar&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>The problem is that everything is a list in Perl 6. For example in example below, `&#8217;advent-calendar&#8217;` is one element list (containing itself).</p>
<pre><code>&gt; reverse 'advent-calendar'
advent-calendar</code></pre>
<p>Even accessing list elements gives a list, so Perl 6 cannot overload `[]` syntax to access string characters.</p>
<pre><code>&gt; 'advent-calendar'[0][0][0][0][0][0][0][0]
advent-calendar</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach Bornheimer</title>
		<link>http://perl6advent.wordpress.com/2010/12/08/different-names-of-different-things/#comment-1570</link>
		<dc:creator><![CDATA[Zach Bornheimer]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 15:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://perl6advent.wordpress.com/?p=557#comment-1570</guid>
		<description><![CDATA[If perl6 is trying to get rid of historical inconsistencies, why not overload reverse so it works on all three types instead of forcing the data to go into the expected data type?  I would think that it might be more efficient to have reverse do the job of all three of those operators, but have it depend on the context.  Why is this?]]></description>
		<content:encoded><![CDATA[<p>If perl6 is trying to get rid of historical inconsistencies, why not overload reverse so it works on all three types instead of forcing the data to go into the expected data type?  I would think that it might be more efficient to have reverse do the job of all three of those operators, but have it depend on the context.  Why is this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
