NAME Syntax::Keyword::Try - a try/catch/finally syntax for perl SYNOPSIS use Syntax::Keyword::Try; sub foo { try { attempt_a_thing(); return "success"; } catch ($e) { warn "It failed - $e"; return "failure"; } } DESCRIPTION This module provides a syntax plugin that implements exception-handling semantics in a form familiar to users of other languages, being built on a block labeled with the try ke