Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$VAR1 = '';
$VAR2 = {};
%hash = ( '' => {}, 5 => 7);
use Data::Dumper;
print Dumper %hash;
%hash = ( '' => {}, 5 => 7);
use Data::Dumper;
print Dumper \%hash;
$VAR1 = {
'' => {},
'5' => 7
};