Ken Lehman wrote:

> I can't say:
> 
> #!/yadayada/perl -w
> use strict;
> 
> $seen = true;
> 
> if( $seen )
> {
>  #whatever
> }
> else
> {
>  #something different
> }
> 

if it makes you feel better, try:

#!/usr/bin/perl -w
use strict;

use constant true  => 1;
use constant false => 0;

my $i = true;

if($i){
        print "$i true\n";
}else{
        print "$i false\n";
}

__END__

oh, well everyone knows that already :-)

david

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to