in reply to Re^2: Which incarnation of try/catch to use?
in thread Which incarnation of try/catch to use?
Although the script now warns that "try" is experimental.
See the sample code in New built-in perl5.38 try/catch syntax that silences the warning via:
# use feature 'try'; # throws 'try/catch is experimental' warnings use experimental 'try';
|
---|