Help for this page
$aword = 'foo'; # use single quotes instead of double $containmentvar = "$aword"; # use double quotes instead of single
$aword = 'foo'; $containmentvar = 'aword'; # no dollar sign here $$containmentvar = 'bar'; # foo or bar? print "$aword\n";