Skip to content

Instantly share code, notes, and snippets.

@paveljurca
Created April 9, 2015 08:59
Show Gist options
  • Save paveljurca/f83a5ce5ec2bce4f9b8b to your computer and use it in GitHub Desktop.
Save paveljurca/f83a5ce5ec2bce4f9b8b to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use 5.010_001;
say 'err' if !eval {
my $x = 3 / 0;
};
# !DANGEROUS! eval
eval ' 3 / 0 ';
say 'err2' if $@;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment