- or download this
sub AS_ARRAY {
my $self=shift;
# do something useful here
}
- or download this
$obj->[42]; # would be the same as
$obj->AS_ARRAY(42); # and so on...
- or download this
# -*- Perl -*-
...
1;
__END__
- or download this
#!/usr/bin/perl -l
...
print +(matrix(1,1,1,0)**12)->(1,0);
__END__
- or download this
#!/usr/bin/perl
...
END { warn "Leaving program\n" }
__END__
- or download this
--- Testing <code> ---
Creating Foo=CODE(0x224eb4)
...
Leaving context
Leaving program
Deleting Foo=CODE(0x224eb4)