The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use POE qw(Component::Server::Qotd);

my ($object) = POE::Component::Server::Qotd->spawn( Alias => 'Echo-Server', BindPort => 8090, Quote => 'A closed mouth gathers no foot.', options => { trace => 1 } );

POE::Session->create(
	inline_states => { _start => \&simple_start,
			   _stop  => \&simple_stop, },
);

$poe_kernel->run();
exit 0;

sub simple_start {
}

sub simple_stop {
}