Re: [MacPerl-AnyPerl] passing reference in eval

2002-03-11 Thread Bart Lateur
On Mon, 11 Mar 2002 17:56:41 +0800, allan wrote: >i need to (i think) pass a hash as a reference to a sub >routine for ultimately letting that sub return a string. >that sub is placed in another file which i require beforehand. >i know the hash is ok >i know i can pass an require plain scalars >b

Re: [MacPerl-AnyPerl] passing reference in eval

2002-03-11 Thread allan
EMAIL PROTECTED]] > > Sent: Monday 11 March 2002 09:57 > > To: macperl-anyperl > > Subject: [MacPerl-AnyPerl] passing reference in eval > > > > > > hi > > > > i need to (i think) pass a hash as a reference to a sub > > routine for ultimately letting tha

RE: [MacPerl-AnyPerl] passing reference in eval

2002-03-11 Thread Martin Moss
how about? my $string; eval { $string=&mysub(\%myhash); } > -Original Message- > From: allan [mailto:[EMAIL PROTECTED]] > Sent: Monday 11 March 2002 09:57 > To: macperl-anyperl > Subject: [MacPerl-AnyPerl] passing reference in eval > > > hi >

[MacPerl-AnyPerl] passing reference in eval

2002-03-11 Thread allan
hi i need to (i think) pass a hash as a reference to a sub routine for ultimately letting that sub return a string. that sub is placed in another file which i require beforehand. i know the hash is ok i know i can pass an require plain scalars but is it possible to pass a hash or any reference in