< Perl Programming < Keywords

The exit keyword

exit finishes the execution of the program after valuating EXPRESSION. It returns with this value.

Although exists can be called on arrays also, its behaviour strongly depends to the use of delete on arrays, having a much less clear behaviour.

Syntax

  exit EXPRESSION
  exit

Examples

print "Exists\n"    if exists $hash{$key};
print "Defined\n"   if defined $hash{$key};
print "True\n"      if $hash{$key};

See also

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.