On Jul 6, 2:11 am, [EMAIL PROTECTED] (Joseph L. Casale) wrote:
> I am reading perldoc.perl.org and am not understanding exit and die clearly.
>
> If I have a conditional in a sub that I want to validate with, what is the
> correct
> way to do the following:
>
> 1. End the sub and return back
Chas Owens wrote:
On 7/5/07, Joseph L. Casale <[EMAIL PROTECTED]> wrote:
I am reading perldoc.perl.org and am not understanding exit and die
clearly.
If I have a conditional in a sub that I want to validate with, what is
the correct way to do the following:
1. End the sub and return
On Jul 5, 10:21 pm, [EMAIL PROTECTED] wrote:
> > I am reading perldoc.perl.org and am not understanding exit
> > and die clearly.
>
> > If I have a conditional in a sub that I want to validate with,
> > what is the correct way to do the following:
>
> > 1. End the sub and return back to the script
Chas Owens wrote:
On 7/5/07, Joseph L. Casale <[EMAIL PROTECTED]> wrote:
I am reading perldoc.perl.org and am not understanding exit and die
clearly.
If I have a conditional in a sub that I want to validate with, what is
the correct way to do the following:
1. End the sub and return
On 7/6/07, kapil.V <[EMAIL PROTECTED]> wrote:
snip
> 2. can sort of be done*, you can exit a script with exit() (see
> perldoc -f exit), die (see perldoc -f die), or croak (see perldoc
> Carp).
>
> * At the end of script any END {} blocks that have been defined will
> execute (in reverse order of
>> I am reading perldoc.perl.org and am not understanding exit and die
>> clearly.
>>
>> If I have a conditional in a sub that I want to validate with, what is
>> the
>> correct way to do the following:
>>
>>
>> 1. End the sub and return back to the script without continuing
>> that
>> sub.
>
> I am reading perldoc.perl.org and am not understanding exit and die
> clearly.
>
> If I have a conditional in a sub that I want to validate with, what is the
> correct way to do the following:
>
>
> 1. End the sub and return back to the script without continuing that
> sub.
if (condi
On 7/5/07, Joseph L. Casale <[EMAIL PROTECTED]> wrote:
I am reading perldoc.perl.org and am not understanding exit and die clearly.
If I have a conditional in a sub that I want to validate with, what is the
correct way to do the following:
1. End the sub and return back to the script wi
I am reading perldoc.perl.org and am not understanding exit and die clearly.
If I have a conditional in a sub that I want to validate with, what is the
correct way to do the following:
1. End the sub and return back to the script without continuing that sub.
2. End the entire scrip