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

Re: I'm reading a book! It's given me more questons!

by polettix (Vicar)
on Jul 28, 2005 at 13:48 UTC ( [id://478968]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @step = (1..9, 0);      # Use of comma operator, no need for push
    my $step = join '', @step; # Use of specific function for the task
    print ($step x 7);
    
  2. or download this
    my $step = join '', (1..9, 0);
    print ($step x 7);
    
  3. or download this
    print ((1..9, 0) x 7);
    

Log In?
Username:
Password:

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

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

    No recent polls found