19 lines
228 B
Perl
Executable File
19 lines
228 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use v5.40.0;
|
|
use strict;
|
|
use warnings;
|
|
use Carp::Always;
|
|
|
|
use File::Basename qw/dirname/;
|
|
|
|
BEGIN {
|
|
chdir '/app/Hiperthermia';
|
|
};
|
|
|
|
use lib '/app/Hiperthermia/lib';
|
|
|
|
use Exd::Gui;
|
|
|
|
Exd::Gui->new->start();
|