In the same spirit as Hail Larry...

#!/usr/bin/perl use warnings; use strict; my $day = 'today'; sub Our_Camel { print 'Our Camel, Who art at #!/usr/bin/perl,'."\n"; print "Hallowed be Thy Name.\n"; print "Thy Script Will Run.\n"; print "Larry's Will be done, on earth as it is in Heaven.\n"; print "Give us this day our daily coffe.\n"; print "And forgive us our errors,\n"; print "as we forgive our scripts when they abort."; print "And lead us not to a single way of thinking,\n"; print "but show us that TMTOWTDI. Amen.\n"; } while($day) { &Our_Camel; }

Tom "Turkey" Schaffer ( : >~

Replies are listed 'Best First'.
Re: Our Camel
by CountZero (Bishop) on Mar 30, 2008 at 09:31 UTC
    Very nice! ++

    But I do not pray to /usr/bin/perl.

    However, if you change

    print 'Our Camel, Who art at #!/usr/bin/perl,'."\n";
    to
    print "Our Camel, Who art at #!$^X\n";

    then all Perl sects will be pleased.

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James