> I like being able to write
> 
> print "Value of var is: $var\n";
> 
> but with variable names like or $res->code, if you try to do
> 
> print "Value of code is: $res->code\n";
> 
> you get:
> Value of rescode is: HTTP::Response=HASH(0x176517c)->code
> 
> I can do
> print "Value of code is: " . $res->code . "\n";
> but that gets pretty messy and error-prone in a long string 
> with lots of
> interpolated variables.


you may want to read the information located here:

http://perl.plover.com/#identity

i stumbled on to this and thought it was interesting

mark
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to