in reply to Re^3: Try::Tiny and -E
in thread Try::Tiny and -E

You *could* also do this:
perl -MTry::Tiny -E 'Try::Tiny::try { 1 / 0 } Try::Tiny::catch { print $_ };'
which (as expected) generates:
Illegal division by zero at -E line 1.

Hope that helps.