The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#
# Getopt::Awesome::Examples::Foo::ChildFoo
#
# Created: 10/07/2009 09:07:46 AM
package Getopt::Awesome::Examples::Foo::ChildFoo;

use strict;
use warnings;
use base qw(Getopt::Awesome::Examples::Foo);
use Getopt::Awesome qw(:common);

define_option('example=s', 'An example from first child');

sub test {
    print get_opt('example') . "\n";
}

1;