There are several defined ways of differentiating scripts as a whole. A minimal approach allows for a bare literal in void context at the beginning:
5; print "I'm Perl 5 code\n";
vs
6; say "I'm Perl 6 code";
Or if you want to make sure strictness is on, you use
use 6.0;
or
module;
Those are okay for the script as a whole, but I hate to think about what happens when people start cutting and pasting snippets. Certainly Perl 6 could disallow snippets
starting with "
5;", but Perl 5 would currently
accept a "
6;" unless you had warnings turned on. One could go with "
5:" and "
6:" instead, but that's a syntax error in Perl 5 currently.
Of course, there's always the tried and true:
print "I'm Perl 5 code\n"; # Perl 5
vs
say "I'm Perl 6 code"; # Perl 6
But that doesn't help much with cut-and-paste errors...
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.