- or download this
sub ReadSource( $ $ )
{
...
}
}
}
- or download this
my %myhash = (); # empty hash
my @Data = ( 'this', 'that', 'that over there' );
...
my $datasource = 'banana';
ReadSource( $datasource, \%myhash );
- or download this
use Data::Dumper;
ReadSource( $datasource, \%myhash );
print( Dumper( \%myhash ) . "\n" );
- or download this
$VAR1 = {
'this' => [
...
'banana'
]
};