- or download this
if (
$matrix[0][4][0] == 1
...
) {
# action if TRUE
}
- or download this
print "it worked" if matrix_ok(\@matrix);
- or download this
sub matrix_ok {
my ($matrix) = @_;
...
return 1;
}
- or download this
...
for my $k (MIN_DEPTH .. MAX_DEPTH) {
...