I think 'say' is Perl 6?

It's also available in perl 5 if you request it:
C:\>perl -e "say 'ok';" String found where operator expected at -e line 1, near "say 'ok'" (Do you need to predeclare say?) syntax error at -e line 1, near "say 'ok'" Execution of -e aborted due to compilation errors. C:\>perl -Mfeature="say" -e "say 'ok';" ok C:\>perl -E "say 'ok';" ok C:\
And Strawberry Perl's a pain when someone who's NOT a Perl Monk has to figure out how to use a module that you've downloaded from CPAN

That's something that most of us had to go through - and it gets easier with practice and experience.

is there a relatively easy way a NON-Perl Monk can upgrade the Perl that DWIM Perl and Padre are using to Perl 6?

No, perl 6 is quite different to perl 5. You can run perl 5 code/modules on perl 6 (using Inline::Perl5) - if that's what you are seeking.
Last time I tried Inline::Perl5, it was quite good on Linux, but pretty crap on Windows.

Cheers,
Rob

In reply to Re^3: array of complex numbers by syphilis
in thread array of complex numbers by pmccarthy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.