in reply to Re: Perl allows package names consisting entirely of colons
in thread Perl allows package names consisting entirely of colons
It was introduced in Perl 5.14. Perl 5.12 also introduced package NAME VERSION. The two can be combined, a la:
package Foo::Bar 1.2 { ...; }
|
|---|