in reply to Using Constants in Perl

Well for one thing, like perldoc constant says . . .

When a constant is used in an expression, perl replaces it with its value at compile time, and may then optimize the expression further. In particular, any code in an "if (CONSTANT)" block will be optimized away if the constant is false.