in reply to Re: wishlist: die-on-failure for built-ins
in thread wishlist: die-on-failure for built-ins

Typically I don't check print's return value, but there are situations in which it is important to do so. E.g. one approach (described in perlipc) for dealing with PIPE errors is to set $SIG{ PIPE } to 'IGNORE' and detect PIPE errors by checking the return value of print.

the lowliest monk

  • Comment on Re^2: wishlist: die-on-failure for built-ins