Re: references and printing

2002-11-18 Thread John W. Krahn
Todd W wrote: > > John W. Krahn wrote: > > Paul wrote: > > > >>--- 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

Re: references and printing

2002-11-18 Thread Todd W
John W. Krahn wrote: Paul wrote: --- 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 chara

Re: references and printing

2002-11-14 Thread John W. Krahn
Paul wrote: > > --- 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.

Re: references and printing

2002-11-14 Thread John W. Krahn
Julien Motch wrote: > > Hi , Hello, > There is one thing I could not explain about printing references . > Take this little program : > > #!/usr/bin/perl > use Mail::POP3Client; > > $pop = new Mail::POP3Client(HOST => "pop.skynet.be"); > > print $pop->Host(); #OK print pop.skynet.be >

Re: references and printing

2002-11-14 Thread Paul
--- 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 o