On Tue, 10 Jul 2007, Chas Owens wrote:
On 7/10/07, Vincent Li <[EMAIL PROTECTED]> wrote:
I am trying to experiment a simple perl math caculation script I wrote:
#!/usr/bin/perl
use strict;
use warnings;
my %operator = (
minus => '-',
add => '+',
multiply => '*',
On Tue, 10 Jul 2007 11:32:54 -0700 (PDT)
Vincent Li <[EMAIL PROTECTED]> wrote:
>
> I am trying to experiment a simple perl math caculation script I wrote:
>
> #!/usr/bin/perl
> use strict;
> use warnings;
>
> my %operator = (
> minus => '-',
> add => '+',
> multiply => '*',
>
On 7/10/07, Vincent Li <[EMAIL PROTECTED]> wrote:
I am trying to experiment a simple perl math caculation script I wrote:
#!/usr/bin/perl
use strict;
use warnings;
my %operator = (
minus => '-',
add => '+',
multiply => '*',
divide => '/',
);
my $big = 5;
my $small = 2;
fo
On Jul 10, 2:32 pm, [EMAIL PROTECTED] (Vincent Li) wrote:
> I am trying to experiment a simple perl math caculation script I wrote:
>
> #!/usr/bin/perl
> use strict;
> use warnings;
>
> my %operator = (
> minus => '-',
> add => '+',
> multiply => '*',
> divide => '/',
> );
>
> m