Andrew Pimlott Wed, 21 Jan 2004 09:27:01 -0800
I like to use symbolic constants. Wha can remember what all those 1, 0, undef, and ''s mean anyway? So I start off all my programs with
use constant FALSE => !TRUE; use constant TRUE => !FALSE; Andrew