#!/usr/bin/perl 

use strict;
use warnings;

$| = 1;

use threads;
use threads::shared;

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