Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Porting (old) code to something else [Perl 6 whitespace rules are not illogical!]

by smls (Friar)
on Feb 18, 2015 at 17:20 UTC ( [id://1117116]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    say $line;
    
  2. or download this
    say (" " x $n).$line;
    
  3. or download this
    say "".(" " x $n).$line;
    say( (" " x $n).$line );
    
  4. or download this
    # listop style:
    foo;
    ...
    foo( "bar", $baz, 42 );
    foo( (1, 2, 3), [1, 2, 3] );  # one List, one Array
    foo( { $_ * 10 }, 2, 4, 6 );  # one Block, three Int
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1117116]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-18 19:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found