#!/usr/bin/perl

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
    if 0; # not running under some shell
use strict;
use warnings;

my $class;

BEGIN {
    $class = $ENV{MODULE_START_CLASS} || 'Module::Start';
    eval "use $class"; die $@ if $@;
}

$class->new->run(@ARGV);
