App-oo_modulino_zsh_completion_helper

 view release on metacpan or  search on metacpan

samples/2-options/lib/Derived.pm  view on Meta::CPAN

#!/usr/bin/env perl
package
  Derived;
use strict;
use warnings;

sub MY () {__PACKAGE__}

use File::AddInc;
use base qw(Greetings_oo_modulino_with_fields);
use fields qw/width height/;

unless (caller) {
  my $self = MY->new(name => 'world', MY->SUPER::_parse_posix_opts(\@ARGV));

  my $cmd = shift
    or die "Usage: $0 COMMAND ARGS...\n";

  print $self->$cmd(@ARGV), "\n";
}

1;



( run in 1.171 second using v1.01-cache-2.11-cpan-7f9471e7e0a )