##
*NAME = \"My name";
####
*NAME2 = \"My $name";
####
$bar = 'bar';
# This prints 'bar'
*foo = \"The $bar is here";
$foo = "bar";
print "$foo\n";
# This dies
*foo = \"The bar is here";
$foo = "bar2"; # error here
print "$foo\n";