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 = {
'4' => {
'4_9_1' => 1,
'4_5_2' => 2,
'4_12_3' => '-',
'4_10_2' => '-',
'4_15_0' => '-',
'4_13_3' => 3,
'4_8_2' => 2,
'4_6_2' => 2,
'4_4_1' => '-',
'4_5_3' => '-',
'4_9_0' => '-',
'4_11_1' => 1,
'4_15_1' => 1,
'4_11_2' => '-',
'4_11_3' => '-',
'4_5_1' => 1,
'4_6_3' => 3,
'4_14_2' => 2,
'4_7_2' => '-',
'4_11_0' => '-',
'4_4_2' => 2,
'4_6_1' => '-',
'4_13_2' => 2,
'4_10_3' => '-',
'4_9_2' => 2,
'4_7_1' => '-',
'4_6_0' => '-',
'4_14_0' => '-',
'4_14_1' => '-',
'4_14_3' => '-',
'4_15_3' => '-',
'4_12_1' => '-',
'4_4_0' => 0,
'4_9_3' => '-',
'4_7_0' => '-',
'4_13_0' => '-',
'4_12_0' => 0,
'4_15_2' => 2,
'4_8_0' => '-',
'4_10_0' => 0,
'4_7_3' => 3,
'4_8_1' => 1,
'4_5_0' => '-',
'4_10_1' => 1,
'4_8_3' => '-',
'4_13_1' => '-',
'4_4_3' => '-',
'4_12_2' => 2
},
'1' => {
'0' => 'True'
},
'3' => {
'2' => 'not well equipped and too small for class size.'
},
'2' => {
'1' => 'supplemented with small amounts of additional materia
l.'
}
};
for $i ( 0 .. $#cleanedData ) {
$aref = $cleanedData[$i];
$n = @$aref - 1;
for $j ( 0 .. $n ) {
print "$cleanedData[$i][$j]\n";
}
}
for $i ( 0 .. $#cleanedData ) {
$aref = $cleanedData[$i];
$n = @$aref - 1;
for $j ( 0 .. $n ) {
[b]for my $k (keys %{$cleanedData[$i][$j]}) {
print $cleanedData[$i][$j]->{$k}, "\n";
}[/b]
}
}