What is meant 'die' in a perl program?

Showing Answers 1 - 4 of 4 Answers

max1x

  • May 20th, 2006
 

If the previous condition is not met, kill the scirpt for proceeding further.

  Was this answer useful?  Yes

max1x

  • May 20th, 2006
 

Don't proceed with the rest of the script of the pervious defined condition is NOT met.

  Was this answer useful?  Yes

max1x

  • May 20th, 2006
 

If the condition defined before the DIE statement is NOT met, the script will stop execution at that point, printing out the default error, if a custom error message is not defined.

  Was this answer useful?  Yes

loginprompt

  • Jun 20th, 2006
 

goto end block if end block exists END{}, execute commands in end block, exit script

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions