{
sub a {
print 1;
}
}
a;
A bug,is it?
a should not be available from outside.
Does it work in Perl 6*?
* Sorry I don't have installed it yet.
|
show 1 more comment
feedback
|
|
Are you asking why the sub is visible outside the block? If so then its because the compile time
In this case the To read more check out Also, did you know that you can inspect the way the Perl parser sees your code? Run perl with the flag
The sub is compiled first, then a block is run with no code in it, then For my example in Perl 6 see: Success, Failure. Note that in Perl 6, dereference is | |||||||||||||||
feedback
|
|
Subroutines are package scoped, not block scoped.
| ||||
|
feedback
|
|
In Perl 6, subs are indeed lexically scoped, which is why the code throws an error (as several people have pointed out already). This has several interesting implications:
| ||||
|
feedback
|
|
If you see the code compile, run and print "1", then you are not experiencing a bug. You seem to be expecting subroutines to only be callable inside the lexical scope in which they are defined. That would be bad, because that would mean that one wouldn't be able to call subroutines defined in other files. Maybe you didn't realise that each file is evaluated in its own lexical scope? That allows the likes of
| ||||
|
feedback
|
|
Named subroutines in Perl are created as global names. Other answers have shown how to create a lexical subroutines by assigning an anonymous sub to a lexical variable. Another option is to use a The primary differences between the two are call style and visibility. The dynamically scoped sub can be called like a named sub, and it will also be globally visible until the block it is defined in is left.
This should print
| |||||||||||||||||
feedback
|
|
Yes, I think it is a design flaw - more specifically, the initial choice of using dynamic scoping rather than lexical scoping made in Perl, which naturally leads to this behavior. But not all language designers and users would agree. So the question you ask doesn't have a clear answer. Lexical scoping was added in Perl 5, but as an optional feature, you always need to indicate it specifically. With that design choice I fully agree: backward compatibility is important. | |||
|
feedback
|
{ local *a = sub { print 1 }; a() } a()– tchrist Sep 24 '11 at 2:31