Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Generate the perl sequence 1, 11, 111, ....

by monarch (Priest)
on Oct 10, 2008 at 07:17 UTC ( [id://716369]=note: print w/replies, xml ) Need Help??


in reply to Generate the perl sequence 1, 11, 111, ....

my $one = "1"; my @ones = ( $one ); while ( 1 ) { $one .= "1"; push( @ones, $one ); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-28 22:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found