in reply to Re: Doubt in Eval
in thread Doubt in Eval

You've noticed that when you do an eval, the print is "invisible"; however there is a way to get around that.

What does Devel::Eval do in this case? There's no string eval in the original code; you changed the exception handling code to do something completely different! The real problem is one of lexical scoping.

Replies are listed 'Best First'.
Re^3: Doubt in Eval
by rajan (Acolyte) on Feb 17, 2012 at 04:26 UTC

    Thanks Every one .. I will use Strict in my programs.