in reply to Re: How will you use state declared variables in Perl6?
in thread How will you use state declared variables in Perl6?

You say "maybe not a big win", but what about something like:
foo(); { my $foo = 42; sub foo { print "Foo: $foo" } }
Which I've done all too often.