Questions about this topic? Sign up to ask in the talk tab.

Perl/Basics/Boolean Logic/Helper Natives/Defined

From NetSec
Jump to: navigation, search

The defined native determines if a scalar value is defined:

 
print "We received a response from the server.\n" if defined $response;