<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cymen&#039;s Blog &#187; Perl</title>
	<atom:link href="http://blog.cymen.org/tag/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cymen.org</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 17:53:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Shooting Yourself in the Foot with Perl</title>
		<link>http://blog.cymen.org/2008/12/22/shooting-yourself-in-the-foot-with-perl/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shooting-yourself-in-the-foot-with-perl</link>
		<comments>http://blog.cymen.org/2008/12/22/shooting-yourself-in-the-foot-with-perl/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:14:42 +0000</pubDate>
		<dc:creator>Cymen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://blog.cymen.org/?p=36</guid>
		<description><![CDATA[Returning Multiple Values $error, $hash = function_a( ... ); if ( $error ) { error(); } // never runs Correction: ($error, $hash) = function_a( ... ); if ( $error ) { error(); } // runs on error]]></description>
			<content:encoded><![CDATA[<p><strong>Returning Multiple Values</strong></p>
<pre>$error, $hash = function_a( ... );
if ( $error ) { error(); }    // never runs</pre>
<p>Correction:</p>
<pre>($error, $hash) = function_a( ... );
if ( $error ) { error(); }    // runs on error</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.cymen.org/2008/12/22/shooting-yourself-in-the-foot-with-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

