vote up 1 vote down star

I'm trying to understand the following piece of code:

sub foo {
    ...
    if ( $@ ) {
        ...
        die $@;
    }
}
flag

2  
A tip: for the squiggly variables that look like pure punctuation, visit perldoc perlvar. – Telemachus Jul 30 at 22:29

2 Answers

vote up 14 vote down check

perldoc -f eval:

If there is a syntax error or runtime error, or a "die" statement is executed, an undefined value is returned by "eval", and $@ is set to the error message. If there was no error, $@ is guaranteed to be a null string.

See also perldoc perlvar.

link|flag
vote up 3 vote down

$@ is a magic variable containing the error message of the last eval command, if any.

link|flag
Not *just* syntax errors. – Sinan Ünür Jul 30 at 18:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.