- or download this
sub X
{
my $self = shift;
$self->{age} = 17;
}
- or download this
sub X
{
my $self = shift;
...
$self->{age} = 17;
print "\$self = $self\n";
}
- or download this
sub Z
{
my ($foo) = @_;
...
print "\$bar = $bar\n";
Z($bar);
print "\$bar = $bar\n";
- or download this
sub Z
{
my ($foo) = @_;
...
print "\$bar = $bar\n";
Z(\$bar);
print "\$bar = $bar\n";