Alexander Samad <[EMAIL PROTECTED]> writes:

> print "This is just text $refH->{"Key"} this is still text\n"

The quotes are the problem, 
quoted "This is just text $refH->{"
unquoted Key
quoted "} this is still text\n"

"Key" closes and reopens the quote, so use single quotes instead.

print "This is just text $refH->{'Key'} this is still text\n"

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to