in reply to Re: die silently in an eval block while using alarm
in thread die silently in an eval block while using alarm

Thanks for the reply. I agree, I shouldn't have any output from die. Is it possible that I get output from the result of die? I can't explain the behavior, I can just observe it. Thanks for the example code, I will study it for a bit.
  • Comment on Re^2: die silently in an eval block while using alarm

Replies are listed 'Best First'.
Re^3: die silently in an eval block while using alarm
by andal (Hermit) on Feb 25, 2013 at 09:56 UTC

    What do you mean by "result of die"? "die" never returns, so there is no "result" returned.

    Search for the problem somewhere else. It has nothing to do with "die" in provided piece of code. Inside of eval "die" does not produce any output. Check your other "warn", "print", "write", or "die" outside of eval.