Skip to content

Instantly share code, notes, and snippets.

@peterzawistowicz
Created September 24, 2015 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterzawistowicz/52fbdc059463fb1e96b6 to your computer and use it in GitHub Desktop.
Save peterzawistowicz/52fbdc059463fb1e96b6 to your computer and use it in GitHub Desktop.
# WRONG WAY
my $client;
if ( eval { $client = MongoDB->connect() } ) {
# do work
}
else {
die "MongoDB not available!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment