Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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.

In reply to Re: How to change these small one-liners into Perl6 code? by ABCXYZ
in thread How to change these small one-liners into Perl6 code? by ABCXYZ

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-20 02:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found