<?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: How Well Can You Read Documentation?</title>
	<atom:link href="http://perlhacks.com/2012/03/how-well-can-you-read-documentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/</link>
	<description>Just another Perl Hacker&#039;s blog</description>
	<lastBuildDate>Sun, 19 Aug 2012 09:19:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>By: jvector</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4900</link>
		<dc:creator>jvector</dc:creator>
		<pubDate>Mon, 18 Jun 2012 15:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4900</guid>
		<description>late joining the party. SOme of these &#039;dwimminess&#039; features make me a bit uncomfortable. I feel that if c gives me &#039;fred&#039; then maybe it&#039;s not very /useful/, but at least it&#039;s consistent with my simple user model of the language. When convenience measures like making that result be &#039;derf&#039; are mixed into the language, then it seems to me kind of like encountering an irregular verb in a natural language:  it may make life easier on this one occasion for somebody but the whole edifice gets just a bit more complicated ... adding to the meme that Perl is &#039;too hard&#039;.</description>
		<content:encoded><![CDATA[<p>late joining the party. SOme of these &#8216;dwimminess&#8217; features make me a bit uncomfortable. I feel that if c gives me &#8216;fred&#8217; then maybe it&#8217;s not very /useful/, but at least it&#8217;s consistent with my simple user model of the language. When convenience measures like making that result be &#8216;derf&#8217; are mixed into the language, then it seems to me kind of like encountering an irregular verb in a natural language:  it may make life easier on this one occasion for somebody but the whole edifice gets just a bit more complicated &#8230; adding to the meme that Perl is &#8216;too hard&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Cross</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4700</link>
		<dc:creator>Dave Cross</dc:creator>
		<pubDate>Thu, 24 May 2012 15:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4700</guid>
		<description>As the title implies, read &lt;a href=&quot;http://perldoc.perl.org/functions/reverse.html&quot; rel=&quot;nofollow&quot;&gt;the documentation&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>As the title implies, read <a href="http://perldoc.perl.org/functions/reverse.html" rel="nofollow">the documentation</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ludo</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4693</link>
		<dc:creator>Ludo</dc:creator>
		<pubDate>Thu, 24 May 2012 03:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4693</guid>
		<description>Why does reverse $string return the original string, but an assignment e.g. : $reversed = reverse $string store the reversed string in the lvalue?</description>
		<content:encoded><![CDATA[<p>Why does reverse $string return the original string, but an assignment e.g. : $reversed = reverse $string store the reversed string in the lvalue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Cross</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4168</link>
		<dc:creator>Dave Cross</dc:creator>
		<pubDate>Thu, 29 Mar 2012 15:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4168</guid>
		<description>Well, quite.

Although your call to &lt;code&gt;scalar&lt;/code&gt; is unnecessary.</description>
		<content:encoded><![CDATA[<p>Well, quite.</p>
<p>Although your call to <code>scalar</code> is unnecessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Conor</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4167</link>
		<dc:creator>Conor</dc:creator>
		<pubDate>Thu, 29 Mar 2012 15:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4167</guid>
		<description>Why not just: &lt;code&gt;$reversed = scalar reverse $string;&lt;/code&gt; ?</description>
		<content:encoded><![CDATA[<p>Why not just: <code>$reversed = scalar reverse $string;</code> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars Balker</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4158</link>
		<dc:creator>Lars Balker</dc:creator>
		<pubDate>Wed, 28 Mar 2012 15:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4158</guid>
		<description>Huh.

I don&#039;t think that&#039;s a sane behaviour for reverse in scalar context (only ever used it with a single argument in scalar context), but I&#039;ll be damned if I can come up with a better alternative.</description>
		<content:encoded><![CDATA[<p>Huh.</p>
<p>I don&#8217;t think that&#8217;s a sane behaviour for reverse in scalar context (only ever used it with a single argument in scalar context), but I&#8217;ll be damned if I can come up with a better alternative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Dorward</title>
		<link>http://perlhacks.com/2012/03/how-well-can-you-read-documentation/#comment-4154</link>
		<dc:creator>David Dorward</dc:creator>
		<pubDate>Wed, 28 Mar 2012 12:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://perlhacks.com/?p=432#comment-4154</guid>
		<description>And now I&#039;ve learned something new about reverse. Hooray for DWIM.</description>
		<content:encoded><![CDATA[<p>And now I&#8217;ve learned something new about reverse. Hooray for DWIM.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.179 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-08-29 17:07:55 -->
<!-- Compression = gzip -->