Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

I crashed 99 bottles.. the dot was the point (multiconcat)

by Discipulus (Canon)
on Apr 19, 2019 at 19:25 UTC ( [id://1232826]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $n=4; 
    print $n." -- ".(--$n||'no more'),".\n" while $n;
    ...
    1 -- 1.
    0 -- no more.
    
  2. or download this
    $n=4; print $n." -- ",(--$n||'no more'),".\n" while $n;
                        #^--- is a comma now!
    ...
    2 -- 1.
    1 -- no more.
    
  3. or download this
    use B::Concise; 
    sub sample { $n=4; print $n." -- ".(--$n||'no more'),".\n" while $n; }
    + 
    ...
    j  <@> leave K*
    k  <1> leavesub[1 ref] K/REFC,1
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://1232826]
Front-paged by haukex
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 06:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found