RosettaCodeData/Task/Scope-modifiers/Perl/scope-modifiers-3.pl

11 lines
150 B
Perl
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
use 5.10.0;
sub count_up
{
state $foo = 13;
say $foo++;
}
count_up; # Prints "13".
count_up; # Prints "14".