<?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/"
	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>Practical - Perl</title>
	<atom:link href="http://practicalperl.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://practicalperl.wordpress.com</link>
	<description>A Blog to learn Perl</description>
	<lastBuildDate>Thu, 23 Nov 2006 06:49:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='practicalperl.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Practical - Perl</title>
		<link>http://practicalperl.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://practicalperl.wordpress.com/osd.xml" title="Practical - Perl" />
	<atom:link rel='hub' href='http://practicalperl.wordpress.com/?pushpress=hub'/>
		<item>
		<title>#4 &#8211; The Strict Pragma</title>
		<link>http://practicalperl.wordpress.com/2006/07/24/4-the-strict-pragma-2/</link>
		<comments>http://practicalperl.wordpress.com/2006/07/24/4-the-strict-pragma-2/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 08:14:26 +0000</pubDate>
		<dc:creator>takeuaway</dc:creator>
				<category><![CDATA[Basic Perl]]></category>
		<category><![CDATA[chapter 1]]></category>

		<guid isPermaLink="false">https://practicalperl.wordpress.com/2006/07/24/4-the-strict-pragma-2/</guid>
		<description><![CDATA[A pragma is a special perl module that hints the compiler the way a block of statements should be compiled. If the program disobeys the restrictions placed on it, it won&#8217;t compile. Here is an example: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; #!C:/Perl/Bin/Perl use strict &#8220;subs&#8221;; $name = Ellie; print &#8220;Hi $name&#8221;; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- The 2nd line tells the compiler to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=7&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A pragma is a special perl module that hints the compiler the way a block of statements should be compiled. If the program disobeys the restrictions placed on it, it won&#8217;t compile. Here is an example:</p>
<p><font size="2">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</font></p>
<p><font size="2"><font size="2">#!C:/Perl/Bin/Perl</font></font></p>
<p><font size="2"><font size="2">use strict &#8220;subs&#8221;;</font></font></p>
<p><font size="2"><font size="2">$name = Ellie;</font></font></p>
<p><font size="2"><font size="2">print &#8220;Hi $name&#8221;;</font></font></p>
<p><font size="2"><font size="2">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</font></font></p>
<p><font size="2"><font size="2">The 2nd line tells the compiler to use the module &#8211; strict, with subs as the argument. If this line is not available, the compiler will compile smoothly and print the following result:</font></font></p>
<p><font size="2"><font size="2"><em>Hi Ellie</em></font></font></p>
<p><font size="2"><font size="2">However, the existence of this 2nd line will give the following outcome:</font></font></p>
<p><font size="2"><font size="2"><em>Bareword &#8220;Ellie&#8221; not allowed while &#8220;strict subs&#8221; in use at try_pragma.pl line 3.</em></font></font></p>
<p><font size="2"><font size="2"><em>Execution of try_pragma.pl aborted due to compilation errors.</em></font></font></p>
<p><font size="2"><font size="2">The use function call allows users to use modules located in the standard Perl library, which is located at C:\Perl\lib in windows.</font></font></p>
<p><font size="2"><font size="2">When the strict pragma takes &#8220;subs&#8221; as an argument, it will capture any bare words, or unquoted strings, when the script is being compiled. The program will abort with an error message.</font></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/practicalperl.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/practicalperl.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/practicalperl.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/practicalperl.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/practicalperl.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=7&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://practicalperl.wordpress.com/2006/07/24/4-the-strict-pragma-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8182ef97ee5385b7afb80ed65324e40e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">takeuaway</media:title>
		</media:content>
	</item>
		<item>
		<title>#3 &#8211; Literals</title>
		<link>http://practicalperl.wordpress.com/2006/07/24/3-literals/</link>
		<comments>http://practicalperl.wordpress.com/2006/07/24/3-literals/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 08:01:09 +0000</pubDate>
		<dc:creator>takeuaway</dc:creator>
				<category><![CDATA[Basic Perl]]></category>
		<category><![CDATA[chapter 1]]></category>

		<guid isPermaLink="false">https://practicalperl.wordpress.com/2006/07/24/3-literals/</guid>
		<description><![CDATA[Numeric Literals 12345 Integer 0x456ff Hexadecimal 0777 Octal Numbers 23.45 Float .234E-2 Scientific Notation String Literals Escape Sequence Description \t Tab \n New Line \r Carriage Return \f Form Feed \b Backspace \a Alarm/Bell \e escape 33 Octal Character \xff Hexadecimal Character \c[ Control Character \l Next character is converted to lower case \u Next [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=5&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Numeric Literals</strong></p>
<table>
<tr>
<td>12345</td>
<td>Integer</td>
</tr>
<tr>
<td>0x456ff</td>
<td>Hexadecimal</td>
</tr>
<tr>
<td>0777</td>
<td>Octal Numbers</td>
</tr>
<tr>
<td>23.45</td>
<td>Float</td>
</tr>
<tr>
<td>.234E-2</td>
<td>Scientific Notation</td>
</tr>
</table>
<p><strong>String Literals</strong></p>
<table>
<tr>
<td><b>Escape Sequence</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>\t</td>
<td>Tab</td>
</tr>
<tr>
<td>\n</td>
<td>New Line</td>
</tr>
<tr>
<td>\r</td>
<td>Carriage Return</td>
</tr>
<tr>
<td>\f</td>
<td>Form Feed</td>
</tr>
<tr>
<td>\b</td>
<td>Backspace</td>
</tr>
<tr>
<td>\a</td>
<td>Alarm/Bell</td>
</tr>
<tr>
<td>\e</td>
<td>escape</td>
</tr>
<tr>
<td>33</td>
<td>Octal Character</td>
</tr>
<tr>
<td>\xff</td>
<td>Hexadecimal Character</td>
</tr>
<tr>
<td>\c[</td>
<td>Control Character</td>
</tr>
<tr>
<td>\l</td>
<td>Next character is converted to lower case</td>
</tr>
<tr>
<td>\u</td>
<td>Next character is converted to upper case</td>
</tr>
<tr>
<td>\L</td>
<td>Next characters are converted to lower case until a \E is found</td>
</tr>
<tr>
<td>\U</td>
<td>Next characters are converted to upper case until a \E is found</td>
</tr>
<tr>
<td>\Q</td>
<td>Backslash all following non-alphanumeric characters until a \E is found</td>
</tr>
<tr>
<td>\E</td>
<td>Ends upper or lower case conversion started with \L or \U</td>
</tr>
<tr>
<td>\\</td>
<td>Backslash</td>
</tr>
</table>
<p><strong>Special Literals</strong></p>
<table>
<tr>
<td>_LINE_</td>
<td>Represents the current line number</td>
</tr>
<tr>
<td>_FILE_</td>
<td>Represents the current filename</td>
</tr>
<tr>
<td>_END_</td>
<td>Represents the logical end of script; trailing garbage is ignored</td>
</tr>
</table>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/practicalperl.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/practicalperl.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/practicalperl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/practicalperl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/practicalperl.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=5&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://practicalperl.wordpress.com/2006/07/24/3-literals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8182ef97ee5385b7afb80ed65324e40e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">takeuaway</media:title>
		</media:content>
	</item>
		<item>
		<title>#2 &#8211; Switches</title>
		<link>http://practicalperl.wordpress.com/2006/07/24/2-switches/</link>
		<comments>http://practicalperl.wordpress.com/2006/07/24/2-switches/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 07:43:49 +0000</pubDate>
		<dc:creator>takeuaway</dc:creator>
				<category><![CDATA[Basic Perl]]></category>
		<category><![CDATA[chapter 1]]></category>

		<guid isPermaLink="false">https://practicalperl.wordpress.com/2006/07/24/2-switches/</guid>
		<description><![CDATA[The -e Switch Executes perl statements at command prompt instead of from a script file. e.g perl -e &#8220;print &#8216;hello dolly&#8217;&#8221;; The -c Switch Checks the syntax of the perl script without actually executing the Perl commands. If the syntax is correct, Perl will tell you so. e.g. perl -c hello.pl The -w Switch Warns [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=4&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>The -e Switch</strong></p>
<p>Executes perl statements at command prompt instead of from a script file.</p>
<p>e.g perl -e &#8220;print &#8216;hello dolly&#8217;&#8221;;</p>
<p><strong>The -c Switch</strong></p>
<p>Checks the syntax of the perl script without actually executing the Perl commands. If the syntax is correct, Perl will tell you so.</p>
<p>e.g. perl -c hello.pl</p>
<p><strong>The -w Switch</strong></p>
<p>Warns user about possibility of using future reserved words.</p>
<p>e.g try_w_switch.pl</p>
<p><em>#!C:/Perl/Bin/Perl<br />
print STDOUT ellie, &#8220;\tThe price is \$100.00\n&#8221;;</em></p>
<p>If i run it just using perl try_w_switch.pl, the output is :</p>
<p><em>ellie     The price is $100.00</em></p>
<p>However, if i run it using perl -w try_w_switch.pl, i get the following output:</p>
<p><em>Unquoted string &#8220;ellie&#8221; may clash with future reserved word at try_w_switch.pl line 2.</em></p>
<p><em>ellie     The price is $100.00</em></p>
<p>Btw, the <em>print STDOUT &#8230;.</em> is just another way to print text to the standard output, only with this type of command can i use the comma sign.</p>
<p>A &#8220;\t&#8221; indicates a tab character.</p>
<p>A &#8220;\n&#8221; indicates a new line character.</p>
<p>A &#8220;\&#8221; is neccessary before the &#8220;$&#8221; sign, else the output will be incorrect. This is because the &#8220;$&#8221;,&#8221;@&#8221; and &#8220;%&#8221; signs are special character prefix for variables.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/practicalperl.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/practicalperl.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/practicalperl.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/practicalperl.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/practicalperl.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=4&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://practicalperl.wordpress.com/2006/07/24/2-switches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8182ef97ee5385b7afb80ed65324e40e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">takeuaway</media:title>
		</media:content>
	</item>
		<item>
		<title>#1 &#8211; Hello World</title>
		<link>http://practicalperl.wordpress.com/2006/07/24/1-hello-world/</link>
		<comments>http://practicalperl.wordpress.com/2006/07/24/1-hello-world/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 07:20:21 +0000</pubDate>
		<dc:creator>takeuaway</dc:creator>
				<category><![CDATA[Basic Perl]]></category>
		<category><![CDATA[chapter 1]]></category>

		<guid isPermaLink="false">https://practicalperl.wordpress.com/2006/07/24/1-hello-world/</guid>
		<description><![CDATA[This is the first perl script to write. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; #!C:/Perl/Bin/Perl print &#8220;Hello World\n&#8221;; #prints the words &#8220;hello world&#8221; with a leading next-line character &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; The first line must always start with the &#8220;shebang&#8221; character -&#8221;#!&#8221;, followed by the location of where your perl interpreter resides. I am using windows, but i suggest to use the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=3&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is the first perl script to write.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>#!C:/Perl/Bin/Perl</p>
<p>print &#8220;Hello World\n&#8221;;</p>
<p>#prints the words &#8220;hello world&#8221; with a leading next-line character</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>The first line <strong>must</strong> always start with the &#8220;shebang&#8221; character -&#8221;#!&#8221;, followed by the location of where your perl interpreter resides.</p>
<p><em>I am using windows, but i suggest to use the &#8220;/&#8221; instead of the &#8220;\&#8221; as the folder separator because next time if you write a perl script on the apache server, all the &#8220;\&#8221; folder separator must be changed to &#8220;/&#8221; for it to work propely.</em></p>
<p>The second line uses the <em>print</em> command to print the trailing text unto the standard output.</p>
<p><em>Note that except for the first line, all lines should end with a &#8220;;&#8221; to indicate the end of the line.</em></p>
<p>The 3rd line is a comment, it will not be executed. A comment is indicated by a &#8220;#&#8221; at the beginning.</p>
<p>Save the file as <em>hello.pl</em> and run perl hello.pl in the command prompt.</p>
<p><img width="450" src="http://i112.photobucket.com/albums/n196/practicalperl/helloworld.jpg" alt="hello world" height="226" /></p>
<p>That&#8217;s it!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/practicalperl.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/practicalperl.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/practicalperl.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/practicalperl.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/practicalperl.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=practicalperl.wordpress.com&amp;blog=319715&amp;post=3&amp;subd=practicalperl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://practicalperl.wordpress.com/2006/07/24/1-hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8182ef97ee5385b7afb80ed65324e40e?s=96&#38;d=identicon" medium="image">
			<media:title type="html">takeuaway</media:title>
		</media:content>

		<media:content url="http://i112.photobucket.com/albums/n196/practicalperl/helloworld.jpg" medium="image">
			<media:title type="html">hello world</media:title>
		</media:content>
	</item>
	</channel>
</rss>
