> Can someone tell me what's going on in my script? Here it is:
>
> use strict;
> use POSIX qw(INT_MAX);
>
> my $i = INT_MAX;
> my $n = INT_MAX - 1000;
> print("i = $i\n");
> print("n = $n\n");
> Not sure of the *why* (I'm sure someone on the list smarter than I can answer), but it works if you change it to: my $n = INT_MAX() - 1000; _______________________________________________ Perl-Win32-Users mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
