$foo = 'foo'; print "$food"; # Will print nothing (no scalar $food is defined) print "${foo}d"; # Will print 'food' as expected