CPU: Perl, Fall 2005 Perl, Week 2: Arrays, Hashes, Control Structures #24

Testing for Definedness

if ( defined $meat ) { ... }
else { ... }
(if (not (null? meat)) ... ...)
Copyright © 2005 Ian Langworth