<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Perl 6 Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the 'Perl 6' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 14:47:09 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 14:47:09 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Re: External variable</title>
      <link>http://www.programmersheaven.com/mb/Perl6/390200/390562/re-external-variable/#390562</link>
      <description>They're just in the @ARGV array, so:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;print $ARGV[0];&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Will print the first one for example.&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/390200/390562/re-external-variable/#390562</guid>
      <pubDate>Thu, 07 May 2009 08:44:22 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: External variable</title>
      <link>http://www.programmersheaven.com/mb/Perl6/390200/390482/re-external-variable/#390482</link>
      <description>Do you mean how to work with command line arguments which were used when calling your perl script?&lt;br /&gt;
If so...&lt;br /&gt;
&lt;br /&gt;
- Input Parameters:&lt;br /&gt;
  - This example shows how to call "PERL Console Application" with input parameters and read them from the code.&lt;br /&gt;
  - Create C:\Temp\Test.pl – Start MSDOS – cd C:\Temp – perl Test.pl arg1 arg2 arg3&lt;br /&gt;
 &lt;br /&gt;
    Test.pl&lt;br /&gt;
    for($i=0;$i&amp;lt;=$#ARGV;$i++) { print("$ARGV[$i]\n"); }&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/390200/390482/re-external-variable/#390482</guid>
      <pubDate>Wed, 06 May 2009 06:07:31 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>External variable</title>
      <link>http://www.programmersheaven.com/mb/Perl6/390200/390200/external-variable/</link>
      <description>Hello ,&lt;br /&gt;
&lt;br /&gt;
I want to know how to use a external var like &lt;br /&gt;
&lt;br /&gt;
#perl script.pl var1 var2&lt;br /&gt;
&lt;br /&gt;
and how to use/define var1 and var2 in script.pl&lt;br /&gt;
&lt;br /&gt;
like $1 $2 in msdos &lt;br /&gt;
&lt;br /&gt;
Have a nice day  &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/390200/390200/external-variable/</guid>
      <pubDate>Fri, 01 May 2009 02:31:39 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>External variable</title>
      <link>http://www.programmersheaven.com/mb/Perl6/390199/390199/external-variable/</link>
      <description>Hello ,&lt;br /&gt;
&lt;br /&gt;
I want to know how to use a external var like &lt;br /&gt;
&lt;br /&gt;
#perl script.pl var1 var2&lt;br /&gt;
&lt;br /&gt;
and how to use/define var1 and var2 in script.pl&lt;br /&gt;
&lt;br /&gt;
like $1 $2 in msdos &lt;br /&gt;
&lt;br /&gt;
Have a nice day  &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/390199/390199/external-variable/</guid>
      <pubDate>Fri, 01 May 2009 02:30:45 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: Programme arguments</title>
      <link>http://www.programmersheaven.com/mb/Perl6/371359/371360/re-programme-arguments/#371360</link>
      <description>: Hi there,&lt;br /&gt;
: &lt;br /&gt;
: I am wondering if it is possible to gather information regarding a &lt;br /&gt;
: programme that must be executed via perl, regarding the programmes &lt;br /&gt;
: arguments. I want to automate the execution of a different &lt;br /&gt;
: programmes but want to query which arguments are necessary &lt;br /&gt;
: beforehand, so I know how many parameters to include.&lt;br /&gt;
: &lt;br /&gt;
: I look forward to hearing from you.&lt;br /&gt;
: s.&lt;br /&gt;
: &lt;br /&gt;
The easiest way is to check the program's documentation or help files. Trying to get the the number and type of the command line options using an automated program (in any language) is quite tricky if not impossible.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/371359/371360/re-programme-arguments/#371360</guid>
      <pubDate>Sun, 20 Apr 2008 11:41:25 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Programme arguments</title>
      <link>http://www.programmersheaven.com/mb/Perl6/371359/371359/programme-arguments/</link>
      <description>Hi there,&lt;br /&gt;
&lt;br /&gt;
I am wondering if it is possible to gather information regarding a programme that must be executed via perl, regarding the programmes arguments. I want to automate the execution of a different programmes but want to query which arguments are necessary beforehand, so I know how many parameters to include.&lt;br /&gt;
&lt;br /&gt;
I look forward to hearing from you.&lt;br /&gt;
s.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/371359/371359/programme-arguments/</guid>
      <pubDate>Sun, 20 Apr 2008 11:17:08 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: Welcome to the Perl 6 message board!</title>
      <link>http://www.programmersheaven.com/mb/Perl6/346345/362719/re-welcome-to-the-perl-6-message-board/#362719</link>
      <description>: &lt;span style="color: Green;"&gt;&lt;strong&gt;How is Perl 6 different than Perl 5.8.8?&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
It's essentially a new language, re-implemented from the ground up. It's not source-compatible with Perl 5, though it will be possible to use Perl 5 modules from Perl 6 code, and there will be an automated source translator too. There are many improvements and new features. See the Perl 6 FAQ here at PH for more info:&lt;br /&gt;
&lt;a href="http://www.programmersheaven.com/2/Perl6-FAQ"&gt;http://www.programmersheaven.com/2/Perl6-FAQ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/346345/362719/re-welcome-to-the-perl-6-message-board/#362719</guid>
      <pubDate>Wed, 04 Jul 2007 03:51:50 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: Welcome to the Perl 6 message board!</title>
      <link>http://www.programmersheaven.com/mb/Perl6/346345/362692/re-welcome-to-the-perl-6-message-board/#362692</link>
      <description>: Hi,&lt;br /&gt;
: &lt;br /&gt;
: Here at Programmer's Heaven we like to keep up with the latest &lt;br /&gt;
: stuff. One of my areas of interest is in programming language design &lt;br /&gt;
: and semantics, so covering new languages or updates to languages is &lt;br /&gt;
: always great fun for me.&lt;br /&gt;
: &lt;br /&gt;
: Perl 6 is on its way and looks like being well worth the wait. We'll &lt;br /&gt;
: be introducing content relating to Perl 6 on Programmer's Heaven &lt;br /&gt;
: over the coming weeks and months and (hopefully!) years, and this &lt;br /&gt;
: forum provides a place to discuss the new language.&lt;br /&gt;
: &lt;br /&gt;
: Have fun!&lt;br /&gt;
: &lt;br /&gt;
: Jonathan&lt;br /&gt;
: &lt;em&gt;Programmer's Heaven&lt;/em&gt;&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: ###&lt;br /&gt;
: for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
: (tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
: /(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;
: &lt;br /&gt;
&lt;span style="color: Green;"&gt;&lt;strong&gt;How is Perl 6 different than Perl 5.8.8?&lt;br /&gt;
Thanks and Regards,&lt;br /&gt;
JoeMc&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/346345/362692/re-welcome-to-the-perl-6-message-board/#362692</guid>
      <pubDate>Tue, 03 Jul 2007 12:34:19 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: to enter a phone no</title>
      <link>http://www.programmersheaven.com/mb/Perl6/359869/362691/re-to-enter-a-phone-no/#362691</link>
      <description>: hi  &lt;br /&gt;
:    i want to get a errror message if  i enter a string value instead &lt;br /&gt;
: of integer in  a text field&lt;br /&gt;
:          can anybody plz help me&lt;br /&gt;
: &lt;br /&gt;
Here's a couple different approaches:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&lt;span style="color: Blue;"&gt;sub check_area_code {
    my $file = "/path/error.log"
    my $LOGOUT = FileHandle-&amp;gt;new("&amp;gt;&amp;gt; ${file}") or die ("Can not write to ${file}: $!");
    my $len = do { length $area_code };

    if ( $len == 3 &amp;amp;&amp;amp; ( $area_code =~ /[0-9][0-9][0-9]/ ) &amp;amp;&amp;amp; (! ($area_code =~ /911/ )) ) {
         # do something...
    } else {
         print $LOGOUT "error invalid area code in phone number!\n";
    }
    $LOGOUT-&amp;gt;close();
}&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
OR Have you tried setting up a condition like such and send in one char at a time:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&lt;span style="color: Blue;"&gt;if (! ($passed_var =~ /\d/) ) {

    print "passed_var is not a number!\n";
    # you could either print this to an error log file or to STDERR.
    # not sure what you wanted from here on. ?
    # or maybe set a variable to 0 and use it like a flag of some sorts.

} else {

    print "All is ok, we have a number.\n";
}&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Hope that helps. &lt;img src="http://www.programmersheaven.com/images/Community/smile.gif" width="15" height="15" alt="" /&gt;&lt;br /&gt;
Regards,&lt;br /&gt;
JoeMc&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/359869/362691/re-to-enter-a-phone-no/#362691</guid>
      <pubDate>Tue, 03 Jul 2007 12:30:37 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>to enter a phone no</title>
      <link>http://www.programmersheaven.com/mb/Perl6/359869/359869/to-enter-a-phone-no/</link>
      <description>hi  &lt;br /&gt;
   i want to get a errror message if  i enter a string value instead of integer in  a text field&lt;br /&gt;
         can anybody plz help me&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/359869/359869/to-enter-a-phone-no/</guid>
      <pubDate>Sat, 26 May 2007 03:02:52 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: Perl 6 regexes via Pugs</title>
      <link>http://www.programmersheaven.com/mb/Perl6/349491/349751/re-perl-6-regexes-via-pugs/#349751</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
: I am trying to learn Perl 6 regexes via Pugs.  I have the current &lt;br /&gt;
: win32 binary build (which includes a parrot.exe) available from the &lt;br /&gt;
: pugscode.org .&lt;br /&gt;
: &lt;br /&gt;
I fear, that's the one that I produce.&lt;br /&gt;
&lt;br /&gt;
: I get a parsing error on the pattern of any Perl 6 regex example I try &lt;br /&gt;
: and I think it maybe because Parrot is not being embedded or &lt;br /&gt;
: externally linked properly into the pugs.exe.  Are there some &lt;br /&gt;
: environment variables or pugs environment commands I need to effect to &lt;br /&gt;
: get parrot to get asked to parse for pugs?&lt;br /&gt;
: &lt;br /&gt;
: The error I get for perl 6 regexes (eg. for an example:&lt;br /&gt;
: &lt;br /&gt;
: $string= "abacadabra";&lt;br /&gt;
:     &lt;br /&gt;
: $string ~~ m/a(.*)a/;      )  is&lt;br /&gt;
: &lt;br /&gt;
: *** Cannot parse PGE: a(.*)a&lt;br /&gt;
: &lt;br /&gt;
: It doesn't make any difference whether the pattern is a(.*)a or &lt;br /&gt;
: something simpler or more complex - pugs can't parse the regex pattern &lt;br /&gt;
: whatever it is.&lt;br /&gt;
: &lt;br /&gt;
They actually don't use PGE any more, but switched to using PCR, and are embedding Perl 5. I think that my build was then missing some files needed to use regexes. I'm currently working on a fix for that - I'll get the new release up soon.&lt;br /&gt;
&lt;br /&gt;
: By the way, if there's some OTHER way than win32 binary-build pugs.exe &lt;br /&gt;
: to try out perl 6 regexes I would be very grateful for that just as &lt;br /&gt;
: well. &lt;br /&gt;
You can always download Parrot and play with PGE directly, but the easy way is to use runpugs:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://feather.perl6.nl:8080/cgi-bin/runpugs?"&gt;http://feather.perl6.nl:8080/cgi-bin/runpugs?&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Have fun,&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/349491/349751/re-perl-6-regexes-via-pugs/#349751</guid>
      <pubDate>Wed, 29 Nov 2006 04:00:59 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Perl 6 regexes via Pugs</title>
      <link>http://www.programmersheaven.com/mb/Perl6/349491/349491/perl-6-regexes-via-pugs/</link>
      <description>Dear Jonathan,&lt;br /&gt;
&lt;br /&gt;
I am trying to learn Perl 6 regexes via Pugs.  I have the current win32 binary build (which includes a parrot.exe) available from the pugscode.org .&lt;br /&gt;
&lt;br /&gt;
I get a parsing error on the pattern of any Perl 6 regex example I try and I think it maybe because Parrot is not being embedded or externally linked properly into the pugs.exe.  Are there some environment variables or pugs environment commands I need to effect to get parrot to get asked to parse for pugs?&lt;br /&gt;
&lt;br /&gt;
The error I get for perl 6 regexes (eg. for an example:&lt;br /&gt;
&lt;br /&gt;
$string= "abacadabra";&lt;br /&gt;
    &lt;br /&gt;
$string ~~ m/a(.*)a/;      )  is&lt;br /&gt;
&lt;br /&gt;
*** Cannot parse PGE: a(.*)a&lt;br /&gt;
&lt;br /&gt;
It doesn't make any difference whether the pattern is a(.*)a or something simpler or more complex - pugs can't parse the regex pattern whatever it is.&lt;br /&gt;
&lt;br /&gt;
By the way, if there's some OTHER way than win32 binary-build pugs.exe to try out perl 6 regexes I would be very grateful for that just as well. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thank you,&lt;br /&gt;
&lt;br /&gt;
Peter Schwenn&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/349491/349491/perl-6-regexes-via-pugs/</guid>
      <pubDate>Thu, 23 Nov 2006 12:25:19 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Re: about perl6</title>
      <link>http://www.programmersheaven.com/mb/Perl6/348276/348348/re-about-perl6/#348348</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
: what does this perl6 means&lt;br /&gt;
Perl 6 is the next version of the Perl programming language, which is currently at Perl 5 (well, the 5.8 branch more accurately). It is a ground-up re-write of Perl 5.&lt;br /&gt;
&lt;br /&gt;
: and what is basic platform of this language &lt;br /&gt;
Perl 6 itself is just a specification for the language, then there is more than one implementation of that language under way. The most advanced is the Pugs project, which implements much of the Perl 6 specification. This is written in Haskell, but they are working on porting it to Perl 6 so the compiler is self hosting. There is also work to compile Perl 6 down to Perl 5. Another implementation that in theory should perform best is the Parrot virtual machine, but that's a bit behind Pugs at the moment.&lt;br /&gt;
&lt;br /&gt;
: and what type of task will it perform and how will it be helpful for &lt;br /&gt;
: programmers in future?&lt;br /&gt;
Perl 6 will be suitable for many types of programming task - in fact, more than Perl 5 (it will be easier to build and maintain larger systems, and type annotations will allow you to supply more optimization hints, meaning you can write code that may run much more quickly).&lt;br /&gt;
&lt;br /&gt;
And of course, it's still Perl, which is nearly "too useful not to know". &lt;img src="http://www.programmersheaven.com/images/Community/smile.gif" width="15" height="15" alt="" /&gt;&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/348276/348348/re-about-perl6/#348348</guid>
      <pubDate>Mon, 06 Nov 2006 05:25:38 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>about perl6</title>
      <link>http://www.programmersheaven.com/mb/Perl6/348276/348276/about-perl6/</link>
      <description>what does this perl6 means and what is basic platform of this language and what type of task will it perform and how will it be helpful for programmers in future?please reply me back for my questions&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/348276/348276/about-perl6/</guid>
      <pubDate>Sat, 04 Nov 2006 06:09:03 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>hi, please give us some adivce and idea about our project</title>
      <link>http://www.programmersheaven.com/mb/Perl6/348019/348019/hi-please-give-us-some-adivce-and-idea-about-our-project/</link>
      <description>Hi, we just finish a project about a net shopping community at &lt;a href="http://netshopkey.com"&gt;http://netshopkey.com&lt;/a&gt; please visit us and give us some feedback, idea and advice.  Very thankful&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/348019/348019/hi-please-give-us-some-adivce-and-idea-about-our-project/</guid>
      <pubDate>Wed, 01 Nov 2006 01:06:02 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Automatic html doc conversion to pdf</title>
      <link>http://www.programmersheaven.com/mb/Perl6/347924/347924/automatic-html-doc-conversion-to-pdf/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I need to get the following done:&lt;br /&gt;
&lt;br /&gt;
I run a website, which once the reservation has been made (car hire reservations), the client can see his voucher online, shown in a html page.&lt;br /&gt;
Now, instead of the html page, would like to get it as pdf document delivered.&lt;br /&gt;
How can this be done?&lt;br /&gt;
Also, would like that DB automatically creates the voucher in pdf format and sends it by email to client.&lt;br /&gt;
&lt;br /&gt;
Any solutions on this?&lt;br /&gt;
Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/347924/347924/automatic-html-doc-conversion-to-pdf/</guid>
      <pubDate>Mon, 30 Oct 2006 18:09:17 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Bagging, Boosting</title>
      <link>http://www.programmersheaven.com/mb/Perl6/347179/347179/bagging-boosting/</link>
      <description>Anybody who can share me Bagging, Boosting or AdaBoost codes?&lt;br /&gt;
&lt;br /&gt;
Please help! Thanks!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/347179/347179/bagging-boosting/</guid>
      <pubDate>Thu, 19 Oct 2006 00:59:42 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Perl 6 FAQ Launched!</title>
      <link>http://www.programmersheaven.com/mb/Perl6/346616/346616/perl-6-faq-launched/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Today Programmer's Heaven has launched a Perl 6 FAQ, answering over 115 questions about Perl 6. &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.programmersheaven.com/2/Perl6-FAQ"&gt;http://www.programmersheaven.com/2/Perl6-FAQ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
There's also a step-by-step guide to writing and running your first Perl 6 program (if you've never written and run one before, of course &lt;img src="http://www.programmersheaven.com/images/Community/twink.gif" width="15" height="15" alt="" /&gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.programmersheaven.com/2/Perl6-QuickStart"&gt;http://www.programmersheaven.com/2/Perl6-QuickStart&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
All feedback, comments and questions welcome on this forum.&lt;br /&gt;
&lt;br /&gt;
Enjoy,&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
&lt;em&gt;Programmer's Heaven&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/346616/346616/perl-6-faq-launched/</guid>
      <pubDate>Wed, 11 Oct 2006 03:00:10 -0700</pubDate>
      <category>Perl 6</category>
    </item>
    <item>
      <title>Welcome to the Perl 6 message board!</title>
      <link>http://www.programmersheaven.com/mb/Perl6/346345/346345/welcome-to-the-perl-6-message-board/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Here at Programmer's Heaven we like to keep up with the latest stuff. One of my areas of interest is in programming language design and semantics, so covering new languages or updates to languages is always great fun for me.&lt;br /&gt;
&lt;br /&gt;
Perl 6 is on its way and looks like being well worth the wait. We'll be introducing content relating to Perl 6 on Programmer's Heaven over the coming weeks and months and (hopefully!) years, and this forum provides a place to discuss the new language.&lt;br /&gt;
&lt;br /&gt;
Have fun!&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
&lt;em&gt;Programmer's Heaven&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/Perl6/346345/346345/welcome-to-the-perl-6-message-board/</guid>
      <pubDate>Thu, 05 Oct 2006 05:43:21 -0700</pubDate>
      <category>Perl 6</category>
    </item>
  </channel>
</rss>