Help for this page
#!/usr/bin/perl use strict; ... my $objb=DemoB->new(); $objb->hello(); # writes "Shalom"
sub new { my $class=shift; ... $self->{'x'}='y'; return $self; }