in reply to You know you've been programming in Perl too long when...

You want your epitaph to say:
#!/usr/bin/perl -w use strict; my @life = qw 'birth starting middle ending death'; foreach my $part (@life){ if($part ne 'death'){ print "Have fun, Code perl!\n"; } else{ die "There's nothing left to code...\n"; } }

--xPhase

PS - Obfu or even more compact code would work as well, but I went for pure readability.

Replies are listed 'Best First'.
Re: Re: You know you've been programming in Perl too long when...
by scain (Curate) on Aug 01, 2001 at 22:13 UTC
    xphase_work,

    That's beautiful; it actually brought a tear to my eye. Here I am sobbing in my office. waaah.

    OK, that's a little much, but a really do like this.

    Scott