Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    my $felix = Pet::Cat->new(name => "Felix");
    $felix->jump;
    $felix->sound;
    
  2. or download this
    #!/usr/bin/env perl
    
    ...
    my $felix = Pet::Cat->new(name => "Felix");
    $felix->jump;
    $felix->sound;
    
  3. or download this
    package Security::Guard {
        use Role::Tiny;
    ...
        use Role::Tiny::With;
        with "Security::Guard";
    }