in reply to Re^3: Module constant and constants in Hashes
in thread Module constant and constants in Hashes

has the same effect as saying
sub NULL { return 0; }
or more accurate, with an empty prototype:
sub NULL() { return 0; }