use strict;
my $var = NULL;

will raise an error of Bareword "NULL" not allowed while "strict subs" in use

link|improve this question

feedback

1 Answer

up vote 20 down vote accepted

There's no NULL in perl. Use undef when you mean "no value". Also, variables are undefined by default. So my $var is equivalent to my $var = undef.

link|improve this answer
5  
+1. and powerboy, be careful when checking whether something is defined. it's "if( defined $var )" NOT "if( not undef $var )". the latter will undefine $var. – eruciform Jul 11 '10 at 19:18
@eruciform - Good point! Thanks! – powerboy Jul 11 '10 at 19:39
+1 for undefined by default. – fengshaun Jul 11 '10 at 23:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.