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

11 lines
150 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use 5.10.0;
sub count_up
{
state $foo = 13;
say $foo++;
}
count_up; # Prints "13".
count_up; # Prints "14".