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

NAME

Zed::Plugin - Zed plugin management.

SYNOPSIS

  package Zed::Plugin::Sys::Echo;
  
  use Zed::Plugin;
  
  =head1 SYNOPSIS
  
      Echo some string just for testing plugin
      ex:
          echo foo bar
  
  =cut

  invoke "echo" => sub {                #function invoke
      print for @_;
      print "\n";

  }, sub{ qw(foo foo1 foo2) };          #matchs parameter
  
  1