#!/usr/bin/perl5.10.0 

eval 'exec /usr/bin/perl5.10.0  -S $0 ${1+"$@"}'
    if 0; # not running under some shell

use strict;
use warnings;

$| = 1;

use threads;
use threads::shared;

use Padre;
my $app = Padre->new;
$app->run;
