![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re^3: what does "$@" mean?by AnomalousMonk (Bishop) |
on Jan 22, 2013 at 03:30 UTC ( #1014549=note: print w/replies, xml ) | Need Help?? |
The Perl special variable $@ holds the reason why eval failed during compilation or execution. See the discussion of eval in perlfunc. Perl failures may have causes that do not originate in eval, and the reasons (actually, error message strings or numeric codes) for these failures are held in other error variables.
In Section
Seekers of Perl Wisdom
|
|