Help for this page

Select Code to Download


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