On Sep 8, 2011, at 10:50 AM, David Golden wrote: > I think that goes back to my point that Foo->VERSION should return > whatever is in $Foo::VERSION without modification. Well, not so much: perl -E'package Foo 1.23; say ref($VERSION); say ref Foo->VERSION' version Oh wait, it's because the new behavior hasn't been released yet. This is more like it: perl -Mversion -E'package Foo 1.23; say ref($VERSION); say ref Foo->VERSION' version version Best, DavidThread Previous | Thread Next