The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

SYNOPSIS

   package MyLibrary;

   use Moose;
   extends 'Dallycot::Library';

   ns 'http://www.example.com/library#';

   define foo => << 'EOD';
     (a, b) :> ((a * b) mod (b - a))
   EOD

   define bar => sub {
     my($library, $engine, $options, @params) = @_;
     # Perl implementation
   };