- or download this
#! /usr/bin/perl
use Readonly;
...
print "$temp \n"; # print 0
print $eq->[1] . "\n"; print 0
- or download this
print "$temp \n";
# and
print $eq->[1] . "\n";
- or download this
Readonly my $eq => [ 2 * $vars->{Y}, -2 * $vars->{X} * $vars->{Y} ];
### instead of
Readonly my $eq => [ 2 * Y, -2 * X * Y ];
- or download this
print "$temp \n"; ## prints 40
# and
print $eq->[1] . "\n"; ## prints -800