use Readonly; { # I don't think you want this Readonly my $NEWLINE => q{\n}; print ">>>$NEWLINE<<<\n"; } { # Do you really want this? Readonly my $NEWLINE => qq{\n}; print ">>>$NEWLINE<<<\n"; } __END__ >>>\n<<< >>> <<<