Exd/scripts/main.pl

19 lines
217 B
Perl
Raw Normal View History

2024-10-13 02:20:45 +02:00
#!/usr/bin/env perl
use v5.40.0;
use strict;
use warnings;
2024-10-29 20:33:00 +01:00
use File::Basename qw/dirname/;
2024-11-11 12:01:44 +01:00
{
system 'perl', 'Build.PL';
system 'perl', 'Build', 'build';
}
2024-11-10 18:04:52 +01:00
use blib;
2024-10-29 20:33:00 +01:00
2024-10-13 02:20:45 +02:00
use Exd::Gui;
Exd::Gui->new->start();