in reply to Flip Flop IV
Now you don't need to use 'eq' and just use '==', because TRUE and FALSE are now subroutines returning numerical values.sub TRUE {return 1} sub FALSE {return 0} # Some assignments to $debug, doing something like # my $debug = TRUE; if ($debug == FALSE) { $debug = TRUE; } else { $debug = FALSE; }
|
---|