App-Environ

 view release on metacpan or  search on metacpan

examples/example.pl  view on Meta::CPAN

#!/usr/bin/env perl

use 5.008000;
use strict;
use warnings;

use lib './examples/lib';

use FindBin;
use App::Environ;
use Data::Dumper;

BEGIN {
  $ENV{APPCONF_DIRS} = "$FindBin::Bin/etc";
}

use Cat;
use Dog;
use Cow;

App::Environ->send_event( 'initialize', qw( foo bar ) );



( run in 0.271 second using v1.01-cache-2.11-cpan-4d50c553e7e )