Skip to content

Instantly share code, notes, and snippets.

@tagomoris
Created November 27, 2012 05:45
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 tagomoris/4152579 to your computer and use it in GitHub Desktop.
Save tagomoris/4152579 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
my $x = 3;
if (1) {
my $x = 2;
} else {
my $x = 1;
}
warn Dumper +{x => $x};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment