#!/usr/bin/perl
use strict;
my $prg="main.exe";
die "$prg not excutalbe!\n" unless -x $prg;
system "$prg";
Go to list of users who liked
More than 5 years have passed since last update.
#!/usr/bin/perl
use strict;
my $prg="main.exe";
die "$prg not excutalbe!\n" unless -x $prg;
system "$prg";
Register as a new user and use Qiita more conveniently
Go to list of users who liked