no warnings 'experimental';
use feature 'isa';
package Perl::Hacker;
sub born { my $class = shift; return bless {}, $class }
DESTROY {
my $self = shift;
print "Remember hacker that you are Hash and unto Hash you shall r
+eturn\n";
}
package main;
my $hacker = Perl::Hacker->born();
print "JAPH\n" if $hacker isa Perl::Hacker;
# long and fruitful 100 years life of happy hacking..
$hacker = {};
L*
There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.