"suresh kumar" schreef:

> I want both the subroutine to be executed, and then i want print
> some statements depending upon both the results.

    my $all = 1;
    a() or $all = 0;
    b() or $all = 0;
    c() or $all = 0;
    if ($all) {
       ...
    }

-- 
Affijn, Ruud

"Gewoon is een tijger."

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to