in reply to Re: help me to find out the error??
in thread help me to find out the error??

until.pl line 45,near "}else" its showing like aborted due to compilation errors

Replies are listed 'Best First'.
Re^3: help me to find out the error??
by LanX (Saint) on Apr 11, 2014 at 13:55 UTC
    and what is  until ( ) {...} else {...} supposed to mean?

    Perl ne Python ;-)

    Cheers Rolf

    ( addicted to the Perl Programming Language)

Re^3: help me to find out the error??
by davido (Cardinal) on Apr 11, 2014 at 14:12 UTC

    until is a looping construct. else is part of an if() statement. They don't link together as you're trying to do.


    Dave