> -Original Message-
> From: Robert "Beau" Link [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 30, 2002 8:27 PM
> To: [EMAIL PROTECTED]
> Subject: using strict and -w
>
> ... And where might I have found that answer within
> perldoc? I tri
On Tuesday, April 30, 2002, at 05:27 , Robert Beau Link wrote:
[..]
> #!/usr/bin/perl -w
>
> use strict;
>
> print "Number, please...";
> $alpha = ;
> print "Another, please...";
> $beta = ;
> $sum= $alpha + $beta;
> $diff = $alpha - $beta;
> $product = $alpha * $beta;
> $quotient = $alpha / $bet
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Howdy,
Thanks to Matt for pointing me in the right direction re: mod_perl.
Here's my latest: working through the perl tutorial docs at
http://www.devshed.com/Server_Side/Perl/Perl101/Perl101_2/page3.html
I've created the code that follows; typed