DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Closure
#!/usr/bin/perl -w
#
#
#
use strict;
my $x = 12;
{ my $x; sub inc { $x++; print "$x\n" } sub dec { $x-- ; print "$x\n"} }
inc();
inc();
inc();
inc();
dec();
inc();
print "$x\n";





