How can I turn this two statement snippet into a single statement?
my $handle = &get_handle('parameter');
$handle->do_stuff;
Something like {&get_handle('parameter')}->do_stuff;, but what would be the correct syntax?
|
||||
|
|
|
There's no requirement for a variable to be used on the left-hand side of the
It's actually quite common. For example,
|
|||||||||||||||||
|
&. In your example, it would have been nicer to domy $handle = get_handle('parameter')– Naveed May 20 '12 at 13:39