此函数评估EXPR,退出Perl解释器,并返回值作为退出值。在退出之前,始终运行脚本(和导入的包)中定义的所有END {}块。 如果省略EXPR,则解释器以值0退出。不应该用于退出子例程; 使用eval和die或使用return。
以下是此函数的简单语法 -
exit EXPR
exit
此函数不返回任何值。
<!--Following is the example code showing its basic usage −
When above code is executed, it produces the following result −
-->