$hi = do_this('asdf');
sub do_this
{
$blob{'f'} = {
'k' => 'j'
};
}
print $hi->{'k'};
# prints j
since do_this doesn't return anything, how does it still print j?
since do_this doesn't return anything, how does it still print j? |
||||
|
http://perldoc.perl.org/functions/return.html
|
|||
|
|
All Perl 5 subroutines return the last value of the last statement executed. |
|||||||||
|
use strict; use warnings;– Daenyth Sep 24 '10 at 19:15