On Fri, Mar 09, 2001 at 03:33:58PM -0800, Christopher Palmer wrote:
> At 3:24 PM -0800 3/9/01, ehughes wrote:
> >on 3/9/01 3:18 PM, Christopher Palmer at [EMAIL PROTECTED] wrote:
> >
> >>>  until ($j = 10) {
> >
> >until ($j == 10) {
> >
> DOOOOOOOHHHHHHH!!
> 
> I HATE when I do that...that's the last time for that mistake (he 
> keeps repeating to himself)


I wonder if you have warnings turned on, which would notify you of this
mistake:


#!perl -w

my $j;
if ($j = 0) {
  # do stuff
}

__END__
Found = in conditional, should be == at tmp.pl line 4.


Ronald


Reply via email to