I've made #4 work finally:
while prompt qq/Please input a number (>1):\n/ -> $_ {
say $_;
}
A lot of unexpected things:
1. For some reason, Rakudo does not recognize the "LOOP:" construct, I just can't use "goto LOOP" to jump to a label.
2. The simple "while(<>){}" idiom doesn't work anymore. Though I've heard that "for =<> {}" is one alternative, but it seems that Rakudo doesn't support it yet.
3. The compiler suggest me to use "lines()" instead of "while(<>)", but "lines()" slurps all the input, so I can't input line by line, luckily there is a "prompt" function instead.
4. Since "while(<>){}" does not work, the implicit variable is not assigned, so I have to explicitly assign it by: "-> $_".
5. For some reason, bare function "chomp" and "say" does not work any more, I have to pass the parameter "$_" explicitly.
6. But the chomp function is not necessary anymore, the NL is automatically chomped. This sounds like the "perl5 -l" option, I guess we will need a "perl6 -L" option to do the inverse in the future?
I am surprised that Perl6 is so much different from Perl5.
But the code does become much shorter and clearer, at least from this example.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|