Help for this page

Select Code to Download


  1. or download this
    sub new {
        return bless {}, shift;
    ...
        my ($x, $y) = @_;
        return $x + $y;
    }
    
  2. or download this
    my $res = Module->add(1, 2);
    
    ...
    my $mod = 'Module';
    
    my $res = $mod->add(1, 2);
    
  3. or download this
    my $mod = 'My::Long::Module::Name';
    
    ...
    }
    
    # etc