- or download this
if (%depends) {
print STDERR "\nUnsatisfied dependencies!\n";
...
}
}
}
- or download this
<root>
<sub>value</sub>
<some><x>45</x><y>77</y></some>
</root>
- or download this
root(
sub('value'),
some( x(45), y(77))
)
- or download this
'name' => sub { return 'name' => $_[1]->{_content}},
or
...
my ($tag,$attr) = @_;
return 'name' => $attr->{_content}
},
- or download this
'name' => 'content',
- or download this
<parent x="1"><name>jenda</name></parent>
and
<parent x="1" name="jenda"/>
- or download this
<parent x="1">blah <name>jenda</name> blah</parent>
- or download this
{ x => "1", ":name" => {_content => "jenda"},
_content => [ "blah ", ["name" => {_content => "jenda"}], " blah"]
}