--- Julien Motch <[EMAIL PROTECTED]> wrote:
> #The next line printsd the reference why ?
> print("the host which you are connecteed to is $pop->Host()\n"); #
> Mail::POP3Client=HASH(0x8153a8c)->Host()

Inside the quotes, the -> operator is taken as printable characters.
Just take the method call out of the quotes:

  print "host is ", $pop->Host(), "\n";


__________________________________________________
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to