<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>Perl - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/perl/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Sat, 29 Jun 2013 08:45:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Perl读书笔记(2)</title>
		<link>https://www.coder4.com/archives/3913</link>
					<comments>https://www.coder4.com/archives/3913#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sun, 16 Jun 2013 13:11:53 +0000</pubDate>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3913</guid>

					<description><![CDATA[Learning Perl 6th Chapter 3 and Chapter 4 1、List是Scalar变量的有序集合，Array是List集合所对应的具体变量（List是数据，Array是对应的存储空间）。 2、与Python类似，Perl的List中变量可以是不同的Scalar元素。 3、Array的定义、下标访问如下： #!/usr/bin/perl $a[0] = 1; $a[1] = &#34;2&#34;; $a[2] = 3; print[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3913/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Perl读书笔记(1)</title>
		<link>https://www.coder4.com/archives/3901</link>
					<comments>https://www.coder4.com/archives/3901#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 07 Jun 2013 15:14:03 +0000</pubDate>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[读书笔记]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3901</guid>

					<description><![CDATA[Learning Perl 6th Chapter 1 and Chapter 2 1、Perl的优点：开发相对快速（比较于C），功能强大，执行效率较高（相对于Python），可移植性。 2、Perl脚本中，直接用`cmd`执行其他Shell命令，类似于SH脚本。 #!/usr/bin/perl $result=`ls -alh`; print $result; 3、上述$是scalar变量（标量，单一变量），而@表示Array变量（数组）。 4、Perl支持In[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3901/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
