<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1012211" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1012211</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070908</link>
    <description> &lt;p&gt;For example, I stole this from one of Myriad&#039;s posts. Is this OOP PERL?&lt;/p&gt;
&lt;p&gt;if(!param(&#039;inputbox1&#039;) || !param(&#039;inputbox2&#039;))&lt;br /&gt;
{                                         url=&quot;http://yourscriptnamehere.pl&quot;;&lt;br /&gt;
print &quot;Location: $url\nURI: $url\n\n&quot;;&lt;br /&gt;
exit();&lt;br /&gt;
}&lt;/p&gt;
 </description>
     <pubDate>Sun, 10 Sep 2000 17:51:04 +0000</pubDate>
 <dc:creator>Vorm</dc:creator>
 <guid isPermaLink="false">comment 1070908 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070765</link>
    <description> &lt;p&gt;Oh, ok, thanks.&lt;/p&gt;
&lt;p&gt;Richard&lt;br /&gt;
richjb::429&lt;/p&gt;
 </description>
     <pubDate>Thu, 07 Sep 2000 12:55:18 +0000</pubDate>
 <dc:creator>richjb</dc:creator>
 <guid isPermaLink="false">comment 1070765 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>OOPs!</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070754</link>
    <description> &lt;p&gt;Object Oriented Programming&lt;/p&gt;
&lt;p&gt;One of Perl&#039;s  most amazing bits (to me) is that it is OPTIONALLY OOP!  So if you don&#039;t need the power of OOP (like for quick little scripts, you don&#039;t have to use the resource heavy methods.  But if you NEED the power of OOP, you have it there, available.&lt;/p&gt;
&lt;p&gt;It&#039;s also what makes the fantastic modules work so well, so you can write those quick little scripts and not rewrite the same wheel endlessly.&lt;/p&gt;
&lt;p&gt;Whee!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt; Suzanne&lt;/p&gt;
 </description>
     <pubDate>Thu, 07 Sep 2000 05:48:31 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1070754 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070697</link>
    <description> &lt;p&gt;I probably already know what it is, but just not as what it is referred to here:  what is OOP? &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/surprise.png&quot; title=&quot;Shocked&quot; alt=&quot;Shocked&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Richard&lt;br /&gt;
richjb::426&lt;/p&gt;
 </description>
     <pubDate>Wed, 06 Sep 2000 14:01:41 +0000</pubDate>
 <dc:creator>richjb</dc:creator>
 <guid isPermaLink="false">comment 1070697 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070692</link>
    <description> &lt;p&gt;=&amp;gt; for hashes, -&amp;gt; for OOP. And we all love OOP, even if I it was probably the hardest thing to learn about Perl. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 06 Sep 2000 13:11:15 +0000</pubDate>
 <dc:creator>Orpheus</dc:creator>
 <guid isPermaLink="false">comment 1070692 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070691</link>
    <description> &lt;p&gt;There is a reason to use =&amp;gt;: it is visually easier to read.  All =&amp;gt; is is a comma, plus it should allow the key to be unqouted.&lt;/p&gt;
&lt;p&gt;Example, which is easier to read?&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;%this = (one =&amp;gt; &amp;quot;1&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; two =&amp;gt; &amp;quot;2&amp;quot;);&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;%this = (&amp;quot;one&amp;quot;, &amp;quot;1&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;two&amp;quot;, &amp;quot;2&amp;quot;);&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Richard&lt;br /&gt;
richjb::424&lt;/p&gt;
 </description>
     <pubDate>Wed, 06 Sep 2000 13:08:20 +0000</pubDate>
 <dc:creator>richjb</dc:creator>
 <guid isPermaLink="false">comment 1070691 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070411</link>
    <description> &lt;p&gt;Uh, I know what hashes are, I&#039;ve just never used those in my hashes. What&#039;s their purpose? Anything?&lt;/p&gt;
 </description>
     <pubDate>Wed, 30 Aug 2000 03:31:57 +0000</pubDate>
 <dc:creator>Vorm</dc:creator>
 <guid isPermaLink="false">comment 1070411 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>The many flavours of Perl</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/are-there-different-types-perl#comment-1070408</link>
    <description> &lt;p&gt;=&amp;gt; is for hashes (multi-dimensional lists), a part of Perl.&lt;/p&gt;
&lt;p&gt;What I love most about Perl is that it works for basic stuff, flat text files, database integration and is also OPTIONALLY OOP!  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I love Perl.&lt;/p&gt;
&lt;p&gt;I wish I had time to learn it properly instead of hacking away at it.&lt;/p&gt;
&lt;p&gt;*sigh*&lt;/p&gt;
&lt;p&gt;Suzanne&lt;/p&gt;
 </description>
     <pubDate>Wed, 30 Aug 2000 03:08:38 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1070408 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
