Help for this page

Select Code to Download


  1. or download this
    package LibraryTest;
    use Moose;
    ...
       isa     => 'ArrayRef[Book]',
       default => sub { [] },
    );
    
  2. or download this
    package LibraryTest;
    use Moose;
    ...
    sub _build_read_books {
       return [];
    }