- or download this
#!/usr/bin/perl
use strict;
...
};
print Dumper($var);
- or download this
$VAR1 = {
'first' => undef,
'second' => undef,
};
- or download this
$VAR1 = {
'first' => 'second'
};
- or download this
return unless defined($name) && $self->{$name};
- or download this
return undef unless defined($name) && $self->{$name};