- or download this
*FOO = \"bar";
- or download this
use constant FOO => "bar";
- or download this
*FOO = \"BAR";
print qq(\$FOO is set to "$FOO"\n);
use constant FOO => "BAR";
print qq(Constant "FOO" is set to ) . FOO . qq(\n);
- or download this
use constant FOO => "BAR";
print "The value of FOO is $FOO\n";