Help for this page
{ my $state_var; sub foo { ...; } sub bar { ...; } }
sub foo { state $state_var; ...; } sub bar { state $state_var; ...; }