in reply to Re: Polymorphic Plugins
in thread Polymorphic Plugins
Thanks!#!/usr/bin/perl -wT use strict; use MyNamespace::Event; use Module::Pluggable require => 1, search_path => ['MyNamespace::Even +t']; print join "\n", plugins; print "\n\n"; print join "\n", keys %MyNamespace::Event::event_list; print "\n";
|
|---|