Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Mantra of Reality

by shirkdog_perl (Beadle)
on Feb 24, 2003 at 18:26 UTC ( [id://238190]=poem: print w/replies, xml ) Need Help??

#!/usr/bin/perl -w use strict; my $life = "Moment in time\n"; my $age = 25; my $death = 100; do { print $life; $age++;} until $age == $death;

Replies are listed 'Best First'.
Re: Mantra of Reality
by webfiend (Vicar) on Feb 24, 2003 at 20:14 UTC

    .. And if you're one to go with reincarnation:

    #!/usr/bin/perl -w use strict; my $life = "Moment in time\n"; LIFE: { my $age = 25; my $death = 100; do { print $life; $age++; } until $age == $death; next LIFE; }

    I just realized that I was using the same sig for nearly three years.

      For those who live life on the edge...
      #!/usr/bin/perl -w use strict; my $life = "Sex, Drugs, & Rock 'n Roll\n"; LIFE: { my $age = 25; my $death = 100; my $drugs = 5; do { print $life; $age += $drugs; } until $age == $death; next LIFE; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-19 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found