- or download this
sub generate {
my ($self, $OBJS) = @_;
}
- or download this
sub generate {
my ($self, [@$OBJS]) = @_;
}
- or download this
#!/usr/bin/perl -w
...
print "shallow: @$shallow_original\n";
print "deep: @$deep_original\n";
- or download this
original: 1 42 3
shallow: 1 42 3
deep: 1 2 3