BEGIN { $^W = 1; } use Readonly; Readonly $DEBUG, 0; if ($DEBUG) { print "This will be gone.\n"; } else { print "Hello, world!\n"; } test.pl syntax OK