#!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
    if $running_under_some_shell;

use strict;
use warnings;

#   bootstrapping private installed modules
use lib '/usr/share/wml';
use TheWML::Backends::Slice::Main ();

TheWML::Backends::Slice::Main->new( argv => [@ARGV] )->main;

