Help for this page

Select Code to Download


  1. or download this
    package Person {
      use Moose;
    ...
      name => ['James Bond', 'Burt Saxby', 'David Somerset'],
    );
    $bond->introduce_yourself;
    
  2. or download this
    package SecretAgent {
      use Moose;
    ...
        printf("The name's %s, %s\n", $surname, $name);
      }  
    }